GoogleCL: Configuration Files
GoogleCL helps you to access the Google services from the Command line or the terminal. When you install GoogleCL, all the configuration files will be present in your home directory. Following are the configuration files present in your home directory. The name of the GoogleCL configuration directory is googlecl. Let’s do a ls Thus as [...]
How to securely access svn Repository using SSH?
Once your svn repository is setup, you can access it. But the usual access with the SVN protocol is not secure. So you must access the repository using protocols like SSH. SSH encrypts the data involved in the transfer. To be able to access svn repository, you must ensure the following SVN daemon is running [...]
How to Install SSH Client Package in Ubuntu/Linux?
To be able to access machines using SSH protocol, you must have SSH client packages. Normally SSH client packages comes bundled with Ubuntu default packages. To install the SSH client Now you can access any machine with SSH enabled If you get the above error, it is possible that SSH Daemon is not running in [...]
How to start the SSH server (daemon) ?
If you want your machine to be able to be accessed using SSH protocol, you must install SSH Server package. Once installed you must start the SSH server, otherwise the client machines or the machines trying to connect with you over SSH protocol may get the following error So to start the SSH server Oh [...]
How to Install SSH Daemon Package in Ubuntu/Linux?
If you want to set up SSH access to your machine, you must install the SSH Daemon package (sshd). ssh runs on a particular port 22 and listens to all incoming SSH request. SSH(Secure Shell) helps you to securely login to a machine. You must use SSH to telnet because telnet communicates via plain text [...]