Saturday, February 18, 2012

logging into another linux

Hi guys,

I'm sure many of you sometimes really want to login into another laptop via yours, I recently learn it and thus hopes sharing it with you,

Its really simple,

1. First, ensure u have ssh on both linux OS

2. Then simply do type that on terminal

              ssh <username>@<domainName|ipAddress>

then simply enter u're password and everything is alright!!

Connecting to another PC without having to enter password everytime

Hi guys, 

I'm sure that like several times you have to connect to server and its really very boring to everytime having to enter the password. So the basic concept is to use a to generate a pair of public and private keys and then push your public key to the server and have your private key on your pc!!

This technique the Public/Private Key Cryptography System and send request to and back. So here how we do it:

On Your Pc
=========
1. cd to your home directory

2. ls .ssh/

3. Generate the key pairs
   ssh-keygen 

4. Copy the public key to the server
    scp .ssh/id_rsa.pub youUsername@server.com:
 

on server
========
Login on your server and do the following

1. ls .ssh/

2. cat id_rsa.pub >> .ssh/authorized_keys 

3. rm id_rsa.pub 

Hope it works, if it doesn't do leave a comment and explain the problem, remember i'm still a linux newbie 

Installing VLC on Cent OS 6.2



Hi guys,

believe me Cent OS 6.2 is really one among the best distro on the market on don't lose time and rush to it. But lol, I've got a crazy time to install VLC on it. Herez how I did it:

1. Lauch terminal and become Root,

2. rpm –rebuilddb

3. yum clean all

4. yum install vlc

Hopefully, this will install VLC on your Cent OS 6.2