Wednesday, November 20, 2013

How to use SFTP securely Download and Upload Files to remote host or server

                                                                                                                                  step 1
                                                               
                                                                                                     sftp abel@192.168.1.21  hit Enter 
                                                               (sftp host or server name@ipaddress)                 
                                                 
                                                                                                                                    step 2
                                                                                                                       you are in
                                                       
                                                                                                                                    step 3
                                                                                                                               ls                              

                                                                                                                                    step 4
                                                               
                                                                                                                             cd to your directory                    
                                                                                                                                      step5
                                                                     

                                                                                                                                      step 6

                                                                                                     command  get filenameyouwanttotransfer  Enter                            
                                                             
                                                                                                                                    step 7
                                                                   

                                                                     
                                                                                                                                   step8
                                                                     

                                                                   
                                                                                                                                    step 9
                                                               

                                                         
                                                                                                                                      step 10
                                                                 
                                                             
                                                                                                                                           step 11

                                                                                                                                         

                                                                                                                  on my local host 192.168.1.2                  
                                                           
                                                                                                                                step 12

                                                                                                                         if permission is denied
                                                                                                     you have to change permission on remote server or pc      
                                                       

                                                                                                                                            step 12
                                                                 
                                                                                                              sudo chmod 777 Documents  
                                                                                                      (then if you wish you can change back to 755) 
                                                                                                             (remote server 192.168.1.21)
                                                             
                                                                                                                                              step 13
                                                                                                               Now no errors. REMEMBER >>you uploading a file to the
                                                                                                               directory where you are , in my case /home/abel/Documents

                                                                                                                command  put  copyandpastefrom Enter
                                                                                                               (your local host 192.168.1.2)
                                                       
                                                                                                                                               step 14
                                                               
                                                                             file uploaded to server                      
                                                             

                                                                                               the end.

Tuesday, November 19, 2013

How to see CPU and GPU temperature from terminal

                                                             step 1

                                 sudo apt-get install cpufrequtils

                                                             step 2

                                  sudo watch grep \"cpu MHz\" /proc/cpuinfo                    
    
                                                             step 3

                                                             results

step 4 


command    sudo watch sensors

step 5

results       info updated every 2 second

step 5

(optional)
hold Ctrl+right mouse

step 6

step 7

control cpu speed       GUI


step 8
control cpu speed         terminal

the end
sudo apt-get install cpufrequtils

watch grep \"cpu MHz\" /proc/cpuinfo

watch sensors

   cpufreq-set -r -g performance
  cpufreq-set -r -g powersave  
cpufreq-set -r -g ondemand 
   cpufreq-set -r -g conservative

Monday, November 18, 2013

How to convert a .nrg file in to .iso and mount it in linux (debian or ubuntu)

 A .nrg file is a proprietary CD image file format used by Nero Burning ROM, a utility suite  made by Nero AG, to create and burn CD images.

                                                               1 step

                                  sudo apt-get install ait                            
                                                                   
                                                                2 step
                                                                   
                                  cd into file location directory   your file.nrg
                                  and use command

                                  sudo iat  file.nrg  fileyouwant.iso                                
                                                                 

                                                                  step 3

                                                                     
                                                                   
                                                                     
                                                              step 4
                                                                     
                                                                 
                                                               step 5

    dd bs=1k if=imagename.nrg of=imagename.iso skip=300
                                                               

wordpress problem with plugin updates

                                                           changing permissions will solve the problem                                    ...