| Command |
Description |
|
# man ping |
display the on-line manual pages for example on ping command - use '-k' option to find any related commands [man] |
|
# dd if=/dev/hdc | md5sum |
perform an md5sum on a device, like a CD [man] |
|
# mii-tool eth0 |
show link status of 'eth0' [man] |
|
# mkbootdisk --device /dev/fd0 `uname -r` |
create a boot floppy [man] |
|
# mkdir dir1 |
create a directory called 'dir1' [man] |
|
# mkdir dir1 dir2 |
create two directories simultaneously [man] |
|
# mkdir -p /tmp/dir1/dir2 |
create a directory tree [man] |
|
# mke2fs /dev/hda1 |
create a filesystem type linux ext2 on hda1 partition [man] |
|
# mke2fs -j /dev/hda1 |
create a filesystem type linux ext3 (journal) on hda1 partition [man] |
|
# mkfs /dev/hda1 |
create a filesystem type linux on hda1 partition [man] |
|
# mkfs -t vfat 32 -F /dev/hda1 |
create a FAT32 filesystem [man] |
|
# mkisofs /dev/cdrom > cd.iso |
create an iso image of cdrom on disk [man] |
|
# mkisofs /dev/cdrom | gzip > cd_iso.gz |
create a compressed iso image of cdrom on disk [man] |
|
# mkisofs -J -allow-leading-dots -R -V |
create an iso image of a directory [man] |
|
# mkswap /dev/hda3 |
create a swap filesystem [man] |
|
# mkswap /dev/hda3 |
create a swap filesystem [man] |
|
# more file1 |
view content of a file along [man] |
|
# mount /dev/hda2 /mnt/hda2 |
mount disk called hda2 - verify existence of the directory '/ mnt/hda2' [man] |
|
# mount /dev/fd0 /mnt/floppy |
mount a floppy disk [man] |
|
# mount /dev/cdrom /mnt/cdrom |
mount a cdrom / dvdrom [man] |
|
# mount /dev/hdc /mnt/cdrecorder |
mount a cdrw / dvdrom [man] |
|
# mount /dev/hdb /mnt/cdrecorder |
mount a cdrw / dvdrom [man] |
|
# mount -o loop file.iso /mnt/cdrom |
mount a file or iso image [man] |
|
# mount -t vfat /dev/hda5 /mnt/hda5 |
mount a Windows FAT32 file system [man] |
|
# mount /dev/sda1 /mnt/usbdisk |
mount a usb pen-drive or flash-drive [man] |
|
# mount -t smbfs -o username=user,password=pass //WinClient/share /mnt/share |
mount a windows network share [man] |
|
# mount -o loop cd.iso /mnt/iso |
mount an ISO image [man] |
|
# mount -t smbfs -o username=user,password=pass //WinClient/share /mnt/share |
mount a windows network share [man] |
|
# mv dir1 new_dir |
rename / move a file or directory [man] |