Archive for February, 2008
Thursday, February 28th, 2008
Show version of the kernel
cat /proc/version
Posted in Command Line, Linux | No Comments »
Wednesday, February 27th, 2008
This command lists all known encodings
iconv -l
Posted in Command Line, Linux | No Comments »
Tuesday, February 26th, 2008
Install / upgrade a deb package from cdrom/dvd
apt-cdrom install package_name
Posted in Command Line, Linux | No Comments »
Monday, February 25th, 2008
Change user and group ownership of a file
chown user:group file
Posted in Command Line, Linux | No Comments »
Sunday, February 24th, 2008
Show memory use
$ cat /proc/meminfo
Posted in Command Line, Linux | No Comments »
Saturday, February 23rd, 2008
List all packages installed on the system
yum list
Posted in Command Line, Linux | No Comments »
Friday, February 22nd, 2008
Force delete a file
rm -f file
Posted in Command Line, Linux | No Comments »
Thursday, February 21st, 2008
View in real time what is added to a file. -f stands for Follow
tail -f /var/log/messages
Posted in Command Line, Linux | No Comments »
Tuesday, February 19th, 2008
Show network adpters and statistics
cat /proc/net/dev
Posted in Command Line, Linux | No Comments »
Sunday, February 17th, 2008
Creates a new from the given input file by assuming it is encoded in fromEncoding and converting it to toEncoding.
iconv -f fromEncoding -t toEncoding inputFile > outputFile
Posted in Command Line, Linux | No Comments »