LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
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


Reply
  Search this Thread
Old 03-19-2004, 05:41 PM   #1
podollb
Member
 
Registered: Oct 2003
Location: Grand Forks, ND
Distribution: Suse/Slackware/RH
Posts: 161

Rep: Reputation: 30
scp ssh (easier way)


I have a windows background but always have worked on linux boxes and have used such scp gui applications that allow me to explore the files/dirs very easily and write and read them easily but now that all that I use is Linux I have been using hte command line scp (and rsync) but it is tedious... Is there a nice gui for this, or better yet is there a way you can psuedo mount a file system via ssh? (keep in mind I cannot change anything on the servers, I just have ssh access to them).
 
Old 03-19-2004, 11:58 PM   #2
lnxconvrt
Member
 
Registered: Mar 2002
Location: Houston
Distribution: FC3, Manrake 10.x, various others at times
Posts: 113

Rep: Reputation: 18
fish

Open Konqueror, type fish://hostname, enter username and password.

Basically uses ssh IIRC.

You can also do lan:/ to explore hosts on the local subnet, but you'll probably have to setup the Lisa daemon first. See /etc/lisarc, and comment out the 127... references, replacing with lines referring to your subnet.

HTH.
 
Old 03-20-2004, 09:29 AM   #3
podollb
Member
 
Registered: Oct 2003
Location: Grand Forks, ND
Distribution: Suse/Slackware/RH
Posts: 161

Original Poster
Rep: Reputation: 30
didn't work...

Fish must not be installed on my system... I just installed Fedoar and chose 'everything' and it apparently doesn't have fish installed. Also the second comment isn't an option as I can't install anything on the servers like I said... (and these servers are not on my subnet, and to make things more difficult I use public key authentication with an ssh-agent not username/password)
 
Old 03-20-2004, 06:16 PM   #4
lnxconvrt
Member
 
Registered: Mar 2002
Location: Houston
Distribution: FC3, Manrake 10.x, various others at times
Posts: 113

Rep: Reputation: 18
fish

It's not a separate application. You type it in the location bar of Konqueror, same place you would type a url to go to a web site, just "fish://..." instead of "http://..." .It operates over ssh. Might work transparently with ssh-agent, but I've not tried it that way.

The "lan" setup is on your machine not the remote boxes, but probably not applicable to what you want to do.

BTW if you're running the default Gnome desktop Nautilus is the file manager and you may have to either search in the menus or invoke Konqueror manually in a terminal window with "konqueror &".
 
Old 03-20-2004, 07:44 PM   #5
podollb
Member
 
Registered: Oct 2003
Location: Grand Forks, ND
Distribution: Suse/Slackware/RH
Posts: 161

Original Poster
Rep: Reputation: 30
tried that...

That is what I tried.
I did the fish:// and specified my local server to test it out but to no avail.
Fish is a plugin to konqueror though I think, that was what I was gettign at as far as not being /installed/.
Any other ideas? A setting possibly...
 
Old 03-20-2004, 09:57 PM   #6
Tyir
Member
 
Registered: Sep 2003
Distribution: Slackware 9.1 with fluxbox
Posts: 259

Rep: Reputation: 30
very nice!!

is there a way to use this with another browser/file manager?

mozilla seems not to have it, do you know any others?
 
Old 03-21-2004, 01:28 AM   #7
lnxconvrt
Member
 
Registered: Mar 2002
Location: Houston
Distribution: FC3, Manrake 10.x, various others at times
Posts: 113

Rep: Reputation: 18
fish is part of konqueror

As I understand it since Konqueror 3.1. I believe it was developed for Midnight Commander, and may be available for that. Nautilus can do smb://, but not fish:// AFAIK.

I'm puzzled, podollb, if you did a "kitchen sink" Fedora install, as to why fish doesn't work. I've used it at least since RH 9.

If I do Help -> About Konqueror, I get 3.1.4-6. If yours is not up to date, maybe a "yum update Konqueror" is in order. Otherwise, I'm puzzled.
 
Old 03-21-2004, 06:14 PM   #8
podollb
Member
 
Registered: Oct 2003
Location: Grand Forks, ND
Distribution: Suse/Slackware/RH
Posts: 161

Original Poster
Rep: Reputation: 30
forgot the username

I found an article that said to try this in konqueror:
sftp://hostname
and that worked.
then I found another article about fish that said try:
fish://username@hostname
And that worked.
So I guess you were right it was installed.
But it didn't work with merely:
fish://hostname for some reason (I tried again)
so no big deal, it works so good enough for me.
My only problem is that one server I connect to I use public key (ssh-agent) and I haven't found out how to get the "fish" or "sftp" to work with that, even with port forwarding combinations I tried. Have any ideas?
 
Old 03-21-2004, 11:56 PM   #9
lnxconvrt
Member
 
Registered: Mar 2002
Location: Houston
Distribution: FC3, Manrake 10.x, various others at times
Posts: 113

Rep: Reputation: 18
The fish://username@hostname

Must be because you have different usernames on the 2 boxes. It's probably like scp, which assumes that if you don't use "username@" that you want to connect with the same username that you are logged into the originating host with.

Not sure about ssh-agent, but there is a way to set up a pseudo host to connect to with an identity file which has your key. Say you want to connect to a host called tree, then something like:

cd .ssh
vi config as follows:
host tree-2
hostname tree
identity file /path/to/.ssh/id_dsa # assuming a passwordless key in .ssh called "id_dsa"

Then ssh tree-2 uses the private key to authenticate to tree (assuming that the user at tree has the public key in its .ssh/authorized_keys2 file).

Not sure if you would like that vs. using ssh-agent, but it would probably then work to do fish://tree-2, though I haven't tried to test this.

Note: the 2 lines after "host tree-2" in config may need to be indented and don't show that way, but I'm too tired to change the post to html and try to make them do it.

Last edited by lnxconvrt; 03-22-2004 at 12:01 AM.
 
  


Reply



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
ssh scp question shanenin Linux - Networking 3 10-14-2004 12:26 AM
Problems with SSH / SCP henriette Linux - Networking 1 04-28-2004 01:52 AM
SSH - where are scp and sftp satimis Linux - Networking 2 11-15-2003 10:27 AM
ssh scp problem ckupris Linux - Networking 6 10-11-2003 05:17 PM
sshd, ssh, scp, help Stimm Linux - Security 3 03-25-2001 05:17 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 09:06 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