Saturday, December 28, 2013

How to extract tar.gz file and create tar.gz file

                                                                                 step 1
                                                                                   
                     tar  -xzvf  backup.tar.gz                              
                      
                                                                             
                                                                                   step 2

                      results                    

                                                                                  step 3
                                                                                   
                                                                                   
                                                                           
                                                                                 step 4
                                                          create tar.gz file

                     tar  -cvzf  backup.tar.gz  file1  file2               
                                                                                    step 5

                      results                    
                                                                                 
                                                                         step 6

                                                                           step 7

                                                                    bonus
                if you want to see what is inside tar.gz file without extracting
                     tar -tvzf backap120413.tar.gz
                                                                                 

How to mount usb flash drive from terminal in ubuntu server or host

                                                                      step 1

                    cd /
                cd /media
                sudo mkdir all usb   
                                                                   

                                                                         step 2

                    sudo fdisk -l                        
                                                                           

                                                                              step 3

                      results   from fdisk -l                         

                                                                            step 4

                     sudo mount /dev/sdb1 /media/allusb                  

                                                                          step 5

                      cd allusb    (or name you choose before)                     

                                                                          step 6

                       now you can use files from pen drive                      

                                                                            step 7
                  sudo umount /dev/sdb1(do not forget to get out from mount point) 
                         
                                                          same others ways

    sudo mount -t vfat /dev/sdb1/ /media/allusb/ -o uid=1000,gid=100,utf8,dmask=027,fmask=137   


              sudo mount -t ntfs-3g /dev/sdb1/ /media/allusb                      

Friday, December 20, 2013

how to start a second network adapter

                                                                          step1

                     sudo ifconfig
                                                                          step 2
                      results
                                                                            step 3
                     sudo   ifconfig eth1 up
                                                                               step 4
                      results

How to add google + Button on your website

                                                                            step 1

                   https://support.google.com/webmasters/


                                                                                step 2

                                                                                     
                                                                                               https://developers.google.com/+/web/+1button/  
                                                                                   

                                                                           step 3
   
 <script type="text/javascript" src="https://apis.google.com/js/plusone.js"></script><g:plusone></g:plusone>
                                                       copy code from google      
                                                                             

                                                                             
                                                                       step 4
                                                                on your server
                                 
                    su -    Enter password  then change directory to   
                     cd /var/www
                    nano index.ntml     or    sudo  nano index.ntml 
                      paste code from google in to file
                       Ctrl + x then y

                                                    results

How to see full cpu information on Linux from terminal

                                                                        step 1
         
                    sudo cat /proc/cpuinfo  
                                             
      It is the best command for getting the information about your cpu

Thursday, December 19, 2013

How to backup your blogger blog (export)

                                                                        step 1

                                                                           
                                                                               
                                 remember shit happens 

How to monitor hdd temperature from terminal

                                                                    step1
                                                                     
                    sudo apt-get install hddtemp      



                                                                       step2

                      yes or no  is up to you        
                                                                               

                                                                             step3

                     keep it as it is                  

                                                                            step 4

                      keep it as it is                  


                                                                              step 5

                    sudo hddtemp /dev/sd[a-z]                  

                                                                           OR
                 hdparm -H /dev/sda


Wednesday, December 18, 2013

How to test the performance of the hard disk drive ( Ubuntu + Debian )

                                                                         step 1
                              hdparm -tT /dev/sda
                                          8 years old HDD

                                                                               step 2
                             sudo hdparm -tT /dev/sda
                                          3 years old HDD

                                                                        the end
                                           

How to automatically repair filesystems with inconsistencies during bootsetup ( after electrical or physical failure in Debian or ubuntu OS)

                                                                     step 1

                               nano /etc/default /rcS           


                                                                         step 2
                                 unchanged

                                                         
                                                                            step 3

                              on the last line change  no on yes                                              
                                                               Ctrl+x  then y
                                                                       
                   Errors in the file system - this is one of the main causes of incorrect work disks.

                                                                         the end.
                                   

Tuesday, December 17, 2013

How to find default router IP address from terminal (LAN)

                                                                            step1

                    sudo ip route show | grep default                        
                         

                                                                              step 2
                         
                      results   192.168.1.1                                   
                                                   

                                                                             step 3

                       route                          


                                                                            step 4

                    results    192.168.1.1            

                                                                    the end
                                     

How to find your external IP address from terminal

                                                                          step 1
                    sudo apt-get install curl
                                                                             

                                                                         
                                                                        step 2
                     curl ifconfig.me
                                                  

                                                                            step 3

                    results                  
                                                 
                                                                        step 4

                     wget http://ipecho.net/plain -O - -q ; echo                           
                                               

Thursday, December 12, 2013

How to see active network connections to your server or local host

                                                                                 
                                                                           step 1

                    sudo cat /proc/net/ip_conntrack               

                                                                           step 2


                    netstat -n -A inet


                                                                             step 3
   
                     netstat -ano | head

                                                                               step 4


                     ss -n                    

                                                                               step 5


                     sudo netstat -natp 

                                                                             
                                                                                 step 6
                                                                       
 sudo lsof -nPi tcp -F n | awk -F\> '/>/{print$2}'| sort | uniq -c | sort -nr                                  


                                                                                the end

wordpress problem with plugin updates

                                                           changing permissions will solve the problem                                    ...