Advertisement
sahsu

how to ipkg fail in 212j

Mar 7th, 2012
392
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.90 KB | None | 0 0
  1. # check whats your NAS cpu type: http://forum.synology.com/wiki/index.php/What_kind_of_CPU_does_my_NAS_have
  2. # download the install file .xsh: http://forum.synology.com/wiki/index.php/Overview_on_modifying_the_Synology_Server,_bootstrap,_ipkg_etc
  3. # install that file, for example: 212J
  4.  
  5. wget http://ipkg.nslu2-linux.org/feeds/optware/syno-x07/cross/unstable/syno-x07-bootstrap_1.2-7_arm.xsh
  6. chmod 755 ./syno-x07-bootstrap_1.2-7_arm.xsh
  7. ./syno-x07-bootstrap_1.2-7_arm.xsh
  8. # fix ipkg update fail:
  9. # download openssl & wget-ssl from http://ipkg.nslu2-linux.org/feeds/optware/cs08q1armel/cross/unstable/
  10. wget http://ipkg.nslu2-linux.org/feeds/optware/cs08q1armel/cross/unstable/openssl_0.9.8p-1_arm.ipk
  11. wget http://ipkg.nslu2-linux.org/feeds/optware/cs08q1armel/cross/unstable/wget-ssl_1.12-2_arm.ipk
  12. ipkg remove wget
  13. ipkg install openssl* wget-ssl*
  14. mv /usr/syno/bin/wget /usr/syno/bin/wget.old
  15. ipkg update
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement