LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 05-19-2012, 03:49 AM   #1
linyc4u
LQ Newbie
 
Registered: May 2012
Posts: 3

Rep: Reputation: Disabled
Post Access another pc remotedly


Help..i wanna know how to access another computer remotedly
 
Old 05-19-2012, 04:04 AM   #2
allend
LQ 5k Club
 
Registered: Oct 2003
Location: Melbourne
Distribution: Slackware64-15.0
Posts: 6,463

Rep: Reputation: 2798Reputation: 2798Reputation: 2798Reputation: 2798Reputation: 2798Reputation: 2798Reputation: 2798Reputation: 2798Reputation: 2798Reputation: 2798Reputation: 2798
Please tell us some more about what you want to achieve. What remote access protocols does the remote computer allow? Are wanting to upload and download files? Do you want a command shell? Do you want a full desktop display?
 
Old 05-19-2012, 08:27 AM   #3
anil98433
LQ Newbie
 
Registered: May 2012
Posts: 18

Rep: Reputation: Disabled
you can access remote pc via different method like telnet, vncviewer(for graphical access), ssh but make sure that these services installed on your system any wey the cheap method is using ssh.
Using SSH, you are provided a shell nearly identical to one available locally. this provide all command line functionality
To ssh in remote computer u need
1. static ip address of that machine which u want to access remotly or locally
2. rights to access that machine

The First time when you login to the remotehost from a localhost, it will display the host key not found message and you can give “yes” to continue. The host key of the remote host will be added under .ssh/hostkeys directory of your home directory.
localhost$ ssh -l anil98433 remotehost.example.com

Host key not found from database.
Key fingerprint:
xabie-dezbc-manud-bartd-satsy-limit-nexiu-jambl-title-jarde-tuxum
You can get a public key’s fingerprint by running
% ssh-keygen -F publickey.pub
on the keyfile.
Are you sure you want to continue connecting (yes/no)? yes
Host key saved to /home/anil98433/.ssh/hostkeys/key_22_remotehost.example.com.pub
host key for remotehost.example.com, accepted by anil98433 Mon May xx xxxx xx:xx:xx -xxxx

anil98433@remotehost.example.com password:
remotehost.example.com$
now you can access that computer

The Second time when you login to the remote host from the localhost, it will prompt only for the password as the remote host key is already added to the known hosts list of the ssh client. and you will ask about only password if it is correct as you have enterd previously in first step then you get access the shell

localhost$ ssh -l anil98433 remotehost.example.com
anil98433@remotehost.example.com password:
remotehost.example.com$

To copy the files from remote computer ssh use scp protocol
Copy file from the remotehost to the localhost:
localhost$scp anil98433@remotehost.example.com:/ho...tehostfile.txt remotehostfile.txt

Copy file from the localhost to the remotehost:
localhost$scp localhostfile.txt anil98433@remotehost.example.com:/home/anil98433/localhostfile

you can also use Telnet service to access remote computer but before it you have to install telnetserver and rpm package from linux cd which you can install using
rpm -ivh telnet*
then
telnet <ip address of the computer u want to login>
enter user id:
enter passwd:
you can enter in to that


for vncviewer you must have to configure vncserver first which is long process. i hope these above two enough for you
 
Old 05-29-2012, 05:44 AM   #4
linyc4u
LQ Newbie
 
Registered: May 2012
Posts: 3

Original Poster
Rep: Reputation: Disabled
but can you help me to get the vncviewer or ssh to download?
 
Old 05-29-2012, 05:55 AM   #5
pixellany
LQ Veteran
 
Registered: Nov 2005
Location: Annapolis, MD
Distribution: Mint
Posts: 17,809

Rep: Reputation: 743Reputation: 743Reputation: 743Reputation: 743Reputation: 743Reputation: 743Reputation: 743
Quote:
Originally Posted by linyc4u View Post
but can you help me to get the vncviewer or ssh to download?
Please tell us what system (version of Linux--AKA "distribution" (distro) ) you are using. Things like ssh and vnc should be available using the package manager.
 
Old 05-29-2012, 06:11 AM   #6
sanjay87
Member
 
Registered: Oct 2011
Posts: 164

Rep: Reputation: Disabled
Quote:
but can you help me to get the vncviewer or ssh to download?
If ur using Centos : yum install sshd -- It could installed from default repository
if ur using ubuntu : apt-get install ssh --Package get install vis synaptic pacakge manager
 
1 members found this post helpful.
Old 05-29-2012, 08:17 PM   #7
chrism01
LQ Guru
 
Registered: Aug 2004
Location: Sydney
Distribution: Rocky 9.2
Posts: 18,408

Rep: Reputation: 2784Reputation: 2784Reputation: 2784Reputation: 2784Reputation: 2784Reputation: 2784Reputation: 2784Reputation: 2784Reputation: 2784Reputation: 2784Reputation: 2784
For RHEL/Centos its
Code:
openssh-server  # for server
openssh-clients # for client sw
Try
Code:
yum search ssh
to check
 
Old 05-29-2012, 10:12 PM   #8
frankbell
LQ Guru
 
Registered: Jan 2006
Location: Virginia, USA
Distribution: Slackware, Ubuntu MATE, Mageia, and whatever VMs I happen to be playing with
Posts: 19,637
Blog Entries: 28

Rep: Reputation: 6231Reputation: 6231Reputation: 6231Reputation: 6231Reputation: 6231Reputation: 6231Reputation: 6231Reputation: 6231Reputation: 6231Reputation: 6231Reputation: 6231
The command for transferring files equivalent to ssh is scp.

See man scp for details.
 
Old 06-04-2012, 02:59 PM   #9
linyc4u
LQ Newbie
 
Registered: May 2012
Posts: 3

Original Poster
Rep: Reputation: Disabled
hi guys,please can you help with the link to Brute force dictionary software?
 
Old 06-04-2012, 03:03 PM   #10
TobiSGD
Moderator
 
Registered: Dec 2009
Location: Germany
Distribution: Whatever fits the task best
Posts: 17,148
Blog Entries: 2

Rep: Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886
So first you are asking how to access computers remotely, then you ask for brute force software? I think your intention is clear. From the LQ Rules:
Quote:
Posts containing information about cracking, piracy, warez, fraud or any topic that could be damaging to either LinuxQuestions.org or any third party will be immediately removed.
You will get no answer here.
 
1 members found this post helpful.
Old 06-04-2012, 09:03 PM   #11
jefro
Moderator
 
Registered: Mar 2008
Posts: 22,151

Rep: Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641
Time to close this one.
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Unable to see shares on samba server - no authentication access desired (open access) neoelf Linux - Networking 1 06-14-2009 04:18 PM
How to access Access root(/) hard drive attached in Windows XP machine farrukhndm Linux - Software 2 07-29-2008 01:52 PM
Debian Woody: Can't access internet through router, but can access network computers marales314 Linux - Networking 3 06-09-2006 01:33 PM
How to access database created with MS Access on Windows using PHP on Linux Server anjani.78 Linux - Software 1 12-21-2005 07:07 PM
WIFI WLAN / Cannot access internet but can access the router configuration page?SUSE thomas939 Linux - Wireless Networking 12 12-13-2005 11:28 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 10:53 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration