a small tribute to the sysv-rc-conf
my favorite tool for changing Debian’s rc levels! check it out: http://sysv-rc-conf.sourceforge.net/ aptitude install sysv-rc-conf
my favorite tool for changing Debian’s rc levels! check it out: http://sysv-rc-conf.sourceforge.net/ aptitude install sysv-rc-conf
As a linux user, I often receive documents in ISO-8859-7 from Windows users. There is a great unix tool to convert the encodings and it’s called iconv. Here how to use it: iconv –from-code=ISO-8859-7 –to-code=UTF-8 original.txt > converted.txt
This is the way to enable autocomplete in root’s bash: sudo cp ~/.bash_aliases /root/.bash_aliases sudo vim /root/.bashrc Search following lines and uncomment them all: (remove the #’s) Code: #if [ -f ~/.bash_aliases ]; then # . ~/.bash_aliases #fi
write this to your smb.conf [public] comment = public public = yes writeable = yes create mode = 777 path = /path/to/public directory mode = 777 browsable = yes guest ok = yes make sure to chmod 777 the directory and have the following option on: [global] security = share We use it as a [...]