Category: Command Line

Mount Windows Network Share with Samba

Use this command to mount a share on a windows system. It uses Samba. mount -t smbfs -o username=user,password=pass //WinClient/share…

Sort and Unique

Sort contents of a file and remove repeated lines sort file.txt | uniq

Restore Backup Created by dump

Restoring a backup created by the dump command. restore -if home_backup.bak

Show all Installed Packages in Debian

Show all deb packages installed on the system dpkg -l

Incremental Backup using dump

Make a incremental backup of directory ‘/home/binnyva’ dump -1aj -f home.bak /home/binnyva/

Backup Using ‘dump’ command

Make a full backup of directory ‘/home’ dump -0aj -f home.bak /home

lsattr

Show specials attributes lsattr

Make a File Immutable

Makes a file immutable – it can not be removed, altered, renamed or linked chattr +i file

View some lines in a file

View from 1th to 5th line sed -n ‘1,5p;5q’ example.txt

Move Subfolder Files to Current Folder

This command moves all the files in the subfolder to the current folder. mv */* .