Category: Command Line
Verify RPM Package
         September 24, 2008        
    
    Verify the integrity of a rpm package rpm –checksig package.rpm
Build RPM From RPM Source
         September 21, 2008        
    
    Build a rpm package from a rpm source rpmbuild –rebuild package_name.src.rpm
Download Multiple URLs
         September 20, 2008        
    
    Command to download a series of urls with zero padding files… for ((i=1;i
PS Command Forest Mode
         September 18, 2008        
    
    Displays linux tasks in a hierarchical mode ps -e -o pid,args –forest
Archive all files with a given extension
         September 16, 2008        
    
    Find all files with ‘.log’ extention and make an bzip archive find /var/log -name ‘*.log’ | tar cv –files-from=- |…
Configure IP Address
         September 14, 2008        
    
    Configure IP Address using the ifconfig command ifconfig eth0 192.168.1.1 netmask 255.255.255.0
Decompress Bzip2 File
         September 13, 2008        
    
    Decompress a compressed tar archive in bzip2 tar -xvfj archive.tar.bz2tar -xvfj archive.tar.bz2
Create a Bzip2 File
         September 11, 2008        
    
    create a tarball compressed into bzip2 tar -cvfj archive.tar.bz2 dir
Encrypt/Decrypt using PGP
         September 8, 2008        
    
    Usie this command to encrypt and decrypt a file using PGP in linux. gpg -c file gpg -o file -d…
Recent Comments