Category: Command Line
Modify timestamp in Linux
         January 27, 2008        
    
    Modify timestamp of a file or directory touch -t 0712250000 file #(YYMMDDhhmm)
Command to mount a Samba Share in Linux
         January 26, 2008        
    
    Mount a windows network share in Linux using Samba mount -t smbfs -o username=user,password=pass //WinClient/share /mnt/share
Check for Bad Blocks in HDD
         January 24, 2008        
    
    Linux Command to search the Harddisk for bad sectors sudo badblocks -v /dev/sda
Scheduled Shutdown In Linux
         January 23, 2008        
    
    Shutdown the system after a specified time. shutdown -h hours:minutes &
Linux Command to Erase Rewritable CD
         January 21, 2008        
    
    Erase a Rewritable Disk cdrecord -v gracetime=2 dev=/dev/cdrom -eject blank=fast -force
Create a Sound File from a Text
         January 17, 2008        
    
    You can create a wav file of a written text using this command echo “It’s such a beautiful day! Why…
Create a Directory Tree in One Command
         January 15, 2008        
    
    You can create a directory tree using just one command in Linux mkdir -p /tmp/dir1/dir2
Recent Comments