Command |
Description |
# fdformat -n /dev/fd0 |
format a floppy disk [man] |
# cp file file1 |
outputs the mime type of the file as text [man] |
# find / -name file1 |
search file and directory into root filesystem from '/' [man] |
# find / -user user1 |
search files and directories belonging to 'user1' [man] |
# find /home/user1 -name \*.bin |
search files with '. bin' extension within directory '/ home/user1' [man] |
# find /usr/bin -type f -atime +100 |
search binary files are not used in the last 100 days [man] |
# find /usr/bin -type f -mtime -10 |
search files created or changed within 10 days [man] |
# find / -name *.rpm -exec chmod 755 '{}' \; |
search files with '.rpm' extension and modify permits [man] |
# find / -xdev -name \*.rpm |
search files with '.rpm' extension ignoring removable partitions as cdrom, pen-drive, etc.… [man] |
# find / -perm -u+s |
view all files on the system with SUID configured [man] |
# free -m |
displays status of RAM in megabytes [man] |
# fsck /dev/hda1 |
repair / check integrity of linux filesystem on disk hda1 [man] |
# fsck.ext2 /dev/hda1 |
repair / check integrity of ext2 filesystem on disk hda1 [man] |
# fsck.ext3 /dev/hda1 |
repair / check integrity of ext3 filesystem on disk hda1 [man] |
# fsck.vfat /dev/hda1 |
repair / check integrity of fat filesystem on disk hda1 [man] |
# fsck.msdos /dev/hda1 |
repair / check integrity of dos filesystem on disk hda1 [man] |
# fuser -km /mnt/hda2 |
force umount when the device is busy [man] |