Created
August 28, 2013 17:47
-
-
Save jbonney/6369001 to your computer and use it in GitHub Desktop.
Synology upgrade. Files to verify and update.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # File /root/.profile | |
| umask 022 | |
| PATH=/opt/bin:/opt/sbin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/syno/sbin:/usr/syno/bin:/usr/local/sbin:/usr/local/bin | |
| export PATH | |
| #This fixes the backspace when telnetting in. | |
| #if [ "$TERM" != "linux" ]; then | |
| # stty erase | |
| #fi | |
| HOME=/root | |
| export HOME | |
| TERM=${TERM:-cons25} | |
| export TERM | |
| PAGER=more | |
| export PAGER | |
| PS1="`hostname`> " | |
| alias dir="ls -al" | |
| alias ll="ls -la" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # File /etc/rc.local | |
| #!/bin/sh | |
| mount -o bind /volume1/@optware /opt | |
| # Optware setup | |
| [ -x /etc/rc.optware ] && /etc/rc.optware start | |
| exit 0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ipkg update | |
| ipkg upgrade |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment