Friday, September 12, 2014

Linux System Help



http://www.techspot.com/community/topics/step-by-step-beginners-guide-to-installing-ubuntu-11-10.172128/



CD , DVD , both RW and R only mounting on Linux system  

http://www.linuxnix.com/2012/09/how-to-mount-dvd-or-cdrom-in-linux.html 

  
Secure Copy (scp)

                                                     source directory 
                                                            |
                                        $scp -r /media/2068EC5068EC25EE/movie/DEBRABREHAN oracle@192.168.40.2:/uo2/smart/deb/

                        |             |                 |
                   UName       Remote Host _IP        Destination Directory      

                       
  $scp -r /Source_Directory  RemotHostUserNaame@IP:/destnation Directory




 http://www.linuxfocus.org/English/January2003/article278.shtml




scp Performance

http://www.folkstalk.com/2012/07/scp-command-examples-linux-unix.html 

By default scp uses the Triple-DES cipher to encrypt the data being sent. Using the Blowfish cipher has been shown to increase speed. This can be done by using option -c blowfish in the command line.
    $scp -c blowfish some_file your_username@remotehost.edu:~
It is often suggested that the -C option for compression should also be used to increase speed. The effect of compression, however, will only significantly increase speed if your connection is very slow. Otherwise it may just be adding extra burden to the CPU. An example of using blowfish and compression:

$ scp -c blowfish -C local_file your_username@remotehost.edu:~


No comments:

Post a Comment