How do I display a list of all network cards under Linux operating systems? You can use any one of the following command to list network cards installed under Linux operating systems. Please note that the ifconfig and ip commands…
Category: Linux
Mount drive from rc.local
# nano /etc/rc.d/rc.local Add the following line mount /dev/sdb1 /backup Where /dev/sdb1 if the partition and backup is the desired mount point
Linux Cheat Sheet
cheat_sheet.org (C) William Hackmore, 2010 The contents of this file are released under the GNU General Public License. Feel free to reuse the contents of this work, as long as the resultant works give proper attribution and are made publicly…
File and Folder Permissions in Linux
In a typical UNIX/LINUX-style file listing, a file will be displayed in the following way: # ls -la -rwxr-xr– 1 user group 40 Jan 1 11:35 file.txt The first symbol (“-“) represents the type of file. In this case, it…