Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum. |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
 |
04-06-2009, 04:15 AM
|
#1
|
LQ Newbie
Registered: Sep 2008
Location: Spain
Distribution: Red Hat Enterprise 4 AS
Posts: 19
Rep:
|
ssh program for ubuntu
Hi,
I have to use ssh connections at my job. Usually people who work with windows use programs like SecureCRT.
Do you know any good program to access to ssh using Ubuntu?
Thanks in advance
|
|
|
04-06-2009, 04:58 AM
|
#2
|
Member
Registered: Jul 2006
Distribution: Debian, Ubuntu, openSUSE, CentOS
Posts: 147
Rep:
|
Every Linux distro comes with ssh client pre-installed. Try ssh --help or man ssh in terminal. You can install ssh server in ubuntu by doing:
Code:
sudo apt-get install openssh-server
in terminal.
|
|
|
04-06-2009, 05:10 AM
|
#3
|
LQ Newbie
Registered: Sep 2008
Location: Spain
Distribution: Red Hat Enterprise 4 AS
Posts: 19
Original Poster
Rep:
|
Quote:
Originally Posted by rizwanrafique
Every Linux distro comes with ssh client pre-installed. Try ssh --help or man ssh in terminal. You can install ssh server in ubuntu by doing:
Code:
sudo apt-get install openssh-server
in terminal.
|
Hi rizwanrafique,
Many thanks. I'm using the ssh terminal server right now and it works ok. The thing is I'm looking for a more complete program, with more options, etc.
Regards
|
|
|
04-06-2009, 06:43 AM
|
#4
|
Senior Member
Registered: May 2006
Location: USA
Distribution: Debian
Posts: 4,824
|
|
|
|
04-06-2009, 06:56 AM
|
#5
|
LQ Newbie
Registered: Sep 2008
Location: Spain
Distribution: Red Hat Enterprise 4 AS
Posts: 19
Original Poster
Rep:
|
Quote:
Originally Posted by AlucardZero
|
Hi AlucardZero,
For example I want to save a session to copy files via uuencode and it isn't allowed with the shell. With programs like securecrt for windows it is ok.
regards
|
|
|
04-06-2009, 07:21 AM
|
#6
|
Member
Registered: Jul 2006
Distribution: Debian, Ubuntu, openSUSE, CentOS
Posts: 147
Rep:
|
Well ssh in Linux/Unix works slightly differently. There might be a tool that's more GUI centric but I'm not aware of it. You can use scp to copy a file remotely over ssh. Or you can use rsync to copy a whole tree. If you want to use remote shares you as if they were local directories you can use sshfs to mount them locally.
Last edited by rizwanrafique; 04-06-2009 at 07:22 AM.
Reason: typos
|
|
|
04-06-2009, 07:24 AM
|
#7
|
LQ 5k Club
Registered: May 2001
Location: Belgium
Distribution: Arch
Posts: 8,529
|
Take a look at
http://sourceforge.net/projects/ssh-gui/
also gftp has a ssh option
Last edited by repo; 04-06-2009 at 07:25 AM.
|
|
|
04-06-2009, 07:26 AM
|
#8
|
LQ Newbie
Registered: Sep 2008
Location: Spain
Distribution: Red Hat Enterprise 4 AS
Posts: 19
Original Poster
Rep:
|
Quote:
Originally Posted by rizwanrafique
Well ssh in Linux/Unix works slightly differently. There might be a tool that's more GUI centric but I'm not aware of it. You can use scp to copy a file remotely over ssh. Or you can use rsync to copy a whole tree. If you want to use remote shares you as if they were local directories you can use sshfs to mount them locally.
|
hi rizwanrafique,
the problem here is that I do ssh tunnels so I should have to do many steps to copy a file using scp.
I was thinking about something like:
scp localhost -p 6001:source_path/file destination_local_path/file
but unfortunatelly it doesn't work.
many thanks
|
|
|
04-06-2009, 08:56 AM
|
#9
|
Member
Registered: Jul 2006
Distribution: Debian, Ubuntu, openSUSE, CentOS
Posts: 147
Rep:
|
After you open a tunnel following command should work considering you opened a tunnel at localhost:9001 for your destination-host.
Code:
scp -P 9001 file-to-copy localhost:/path/on/destination/host
|
|
|
All times are GMT -5. The time now is 09:38 AM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|