[techtalk] ssh file transfer

2001-02-16 Thread David Merrill

Hi,

I know there is supposed to be a way to transfer files from one
computer to another once I have an ssh connection set up, but the man
page is very vague.

Can anyone give me some pointers or point me to some docs?

Thanks,

-- 
Dr. David C. Merrill http://www.lupercalia.net
Linux Documentation Project   [EMAIL PROTECTED]
Collection Editor & Coordinatorhttp://www.linuxdoc.org
   Finger me for my public key

[FORTRAN] will persist for some time -- probably for at least the next decade.
-- T. Cheatham

___
techtalk mailing list
[EMAIL PROTECTED]
http://www.linux.org.uk/mailman/listinfo/techtalk



Re: [techtalk] ssh file transfer

2001-02-16 Thread James Sutherland

On Fri, 16 Feb 2001, David Merrill wrote:

> Hi,
> 
> I know there is supposed to be a way to transfer files from one
> computer to another once I have an ssh connection set up, but the man
> page is very vague.
> 
> Can anyone give me some pointers or point me to some docs?

You want the "scp" feature (Secure CoPy). Use it like this:

scp filename.tar.gz james@bigbox:/home/james/

"man scp" will give you more information, but here's a quick summary:

scp  

source and destination are user@hostname:path (remote location), or just a
filename.

One caveat: no wildcards!


James.


___
techtalk mailing list
[EMAIL PROTECTED]
http://www.linux.org.uk/mailman/listinfo/techtalk



Re: [techtalk] ssh file transfer

2001-02-16 Thread Kathryn Hogg

David Merrill wrote:
> I know there is supposed to be a way to transfer files from one
> computer to another once I have an ssh connection set up, but the man
> page is very vague.
> 
> Can anyone give me some pointers or point me to some docs?

I use scp and have seen some references to an ssh based mirror program.

--
Kathryn Hogg

___
techtalk mailing list
[EMAIL PROTECTED]
http://www.linux.org.uk/mailman/listinfo/techtalk



Re: [techtalk] ssh file transfer

2001-02-16 Thread stephanie1200

There is also sftp which should be documented in the ssh stuff.

and if you're really feeling frisky, you can set up an ssh tunnel, and run ncftp 
(allowing recursive gets and puts! get an entire dir at a time with a -R!) through it. 
 There was a lovely article on how to do this in sys admin magazine, january 2001 
issue, but i can't seem to get to their site sysadminmag.com, to find it.  here's the 
heart of the article though:

"ssh -R 32000:localhost:23 -l jdoe ppp25.den.myisp.com

The command above means: using SSH, map a prot (32000) on the REMOTE server 
(ppp25.den.myisp.com) to my local manchine (you unix workstation at work) port (23) 
and your login to the REMOTE server (ppp25...) as user "jdoe".  If your username on 
your workstation at work is the same as your workstation at home, you can eliminate 
the "-l jdoe" portion of the command.

[snip...]

then on your home mahcine, you can connect back by using 

telnet localhost 32000

You should be presented with a login prompt from you workstation.  I't s okay to use 
telnet here b/c it is being encrypted over the SSH tunnel."


So you could modify this to ftp/ncftp back instead of telnet.

Kathryn Hogg <[EMAIL PROTECTED]> wrote:
>
> David Merrill wrote:
> > I know there is supposed to be a way to transfer files from one
> > computer to another once I have an ssh connection set up, but the man
> > page is very vague.
> > 
> > Can anyone give me some pointers or point me to some docs?
> 
> I use scp and have seen some references to an ssh based mirror program.
> 
> --
> Kathryn Hogg
> 
> ___
> techtalk mailing list
> [EMAIL PROTECTED]
> http://www.linux.org.uk/mailman/listinfo/techtalk
> 
__
Get your own FREE, personal Netscape Webmail account today at 
http://webmail.netscape.com/

___
techtalk mailing list
[EMAIL PROTECTED]
http://www.linux.org.uk/mailman/listinfo/techtalk



Re: [techtalk] ssh file transfer

2001-02-16 Thread David Merrill

On Fri, Feb 16, 2001 at 02:02:59PM +, James Sutherland wrote:
> On Fri, 16 Feb 2001, David Merrill wrote:
> 
> > Hi,
> > 
> > I know there is supposed to be a way to transfer files from one
> > computer to another once I have an ssh connection set up, but the man
> > page is very vague.
> > 
> > Can anyone give me some pointers or point me to some docs?
> 
> You want the "scp" feature (Secure CoPy). Use it like this:
> 
> scp filename.tar.gz james@bigbox:/home/james/
> 
> "man scp" will give you more information, but here's a quick summary:
> 
> scp  
> 
> source and destination are user@hostname:path (remote location), or just a
> filename.
> 
> One caveat: no wildcards!

I got my file transferred with scp. Thanks for the info.

-- 
Dr. David C. Merrill http://www.lupercalia.net
Linux Documentation Project   [EMAIL PROTECTED]
Collection Editor & Coordinatorhttp://www.linuxdoc.org
   Finger me for my public key

Murphy's Law of Research:
Enough research will tend to support your theory.

___
techtalk mailing list
[EMAIL PROTECTED]
http://www.linux.org.uk/mailman/listinfo/techtalk



Re: [techtalk] ssh file transfer

2001-02-16 Thread Harry Hoffman

Hey David,
  If using Openssh v2 then:
copying from remote to local
scp -p user@local:/dir/where/file/is /dir/where/file/is/going

copying from local to remote
scp -p /dir/where/file/is user@remote:/dir/where/file/is/going

HTH,
Harry


On Fri, 16 Feb 2001, David Merrill wrote:

> Hi,
> 
> I know there is supposed to be a way to transfer files from one
> computer to another once I have an ssh connection set up, but the man
> page is very vague.
> 
> Can anyone give me some pointers or point me to some docs?
> 
> Thanks,
> 
> 


___
techtalk mailing list
[EMAIL PROTECTED]
http://www.linux.org.uk/mailman/listinfo/techtalk



Re: [techtalk] ssh file transfer

2001-02-16 Thread Anmol Khirbat



On Fri, 16 Feb 2001, Kathryn Hogg wrote:

> David Merrill wrote:
> > I know there is supposed to be a way to transfer files from one
> > computer to another once I have an ssh connection set up, but the man
> > page is very vague.
> > 
> > Can anyone give me some pointers or point me to some docs?
> 
> I use scp and have seen some references to an ssh based mirror program.


rsync is one of them. http://rsync.samba.org 
Most distributions install it for you.

bye :)
Anmol


___
techtalk mailing list
[EMAIL PROTECTED]
http://www.linux.org.uk/mailman/listinfo/techtalk



[techtalk] Netscape Font Problem

2001-02-16 Thread Phil Savoie


Hi All,

Sorry about this but I seem to recall a solution as to how to ensure
netscape fonts display properly by switching a line in a file
somewhere.  I can't seem to find that message and was wondering if
someone could help me out with what I would have to do.

Hanging my head in shame,

Phil

___
techtalk mailing list
[EMAIL PROTECTED]
http://www.linux.org.uk/mailman/listinfo/techtalk



[techtalk] Open Source Projects

2001-02-16 Thread A Kozic


I'm a college student, and I was looking for a part time job, just for the
sake of experience & such. (I can get more money sponging off my mother
when I don't have a job. I love my mom...)

But I was thinking, I'd much rather code at home in sweats for free
than get dressed up, drive somewhere in the car I don't have, and code for
money. So, Open Source.

Any advice for a Linux/GNU newbie, with good C++/Java skills and some time
on her hands?

--Alison

 
   A Kozic| Tell a man there are 300,000,000,000 stars
 ICQ 97567379 |  in the universe and he will believe you.
[EMAIL PROTECTED]   | Tell him a bench has wet paint on it and
  [EMAIL PROTECTED] |   he'll have to touch it to be sure.


___
techtalk mailing list
[EMAIL PROTECTED]
http://www.linux.org.uk/mailman/listinfo/techtalk



Re: [techtalk] Netscape Font Problem

2001-02-16 Thread Phil Savoie

Nope this is a linux thing Mandrake 7.2.

Phil

I guess I'm an underwater thing wrote:
> 
> If you're running solaris there's a patch for that.  It's a common problem
> that I often ran into with fresh solaris installations.
> 
> -e
> 
> On Fri, 16 Feb 2001, Phil Savoie wrote:
> 
> >
> > Hi All,
> >
> > Sorry about this but I seem to recall a solution as to how to ensure
> > netscape fonts display properly by switching a line in a file
> > somewhere.  I can't seem to find that message and was wondering if
> > someone could help me out with what I would have to do.
> >
> > Hanging my head in shame,
> >
> > Phil
> >
> > ___
> > techtalk mailing list
> > [EMAIL PROTECTED]
> > http://www.linux.org.uk/mailman/listinfo/techtalk
> >

___
techtalk mailing list
[EMAIL PROTECTED]
http://www.linux.org.uk/mailman/listinfo/techtalk



Re: [techtalk] Netscape Font Problem

2001-02-16 Thread I guess I'm an underwater thing


heh. duh.  _linux_chix would imply that.  my bad.

-e


On Fri, 16 Feb 2001, Phil Savoie wrote:

> Nope this is a linux thing Mandrake 7.2.
> 
> Phil
> 
> I guess I'm an underwater thing wrote:
> > 
> > If you're running solaris there's a patch for that.  It's a common problem
> > that I often ran into with fresh solaris installations.
> > 
> > -e
> > 
> > On Fri, 16 Feb 2001, Phil Savoie wrote:
> > 
> > >
> > > Hi All,
> > >
> > > Sorry about this but I seem to recall a solution as to how to ensure
> > > netscape fonts display properly by switching a line in a file
> > > somewhere.  I can't seem to find that message and was wondering if
> > > someone could help me out with what I would have to do.
> > >
> > > Hanging my head in shame,
> > >
> > > Phil
> > >
> > > ___
> > > techtalk mailing list
> > > [EMAIL PROTECTED]
> > > http://www.linux.org.uk/mailman/listinfo/techtalk
> > >
> 


___
techtalk mailing list
[EMAIL PROTECTED]
http://www.linux.org.uk/mailman/listinfo/techtalk



Re: [techtalk] Open Source Projects

2001-02-16 Thread Karl-Heinz Zimmer

On Fre, 16 Feb 2001 A Kozic wrote:
..
> But I was thinking, I'd much rather code at home in sweats for free
> than get dressed up, drive somewhere in the car I don't have, and
> code for money. So, Open Source.
>
> Any advice for a Linux/GNU newbie, with good C++/Java skills and
> some time on her hands?

Hi Alison,

you might want to have a look at the Qt toolkit: since you are planning
to do Free Software it won't cost you a dime, see the information
on license and technic published here:

  http://doc.trolltech.com/

and feel free to meet me and a lot of other enthusiasts on the Qt-interest
mailing list, see

  http://qt-interest.trolltech.com/

Hope you will love Qt as much as I do!  :-)

It will enable you to join the highly motivated community of KDE hackers,
please see yourself:

  http://developer.kde.org/


Karl-Heinz
-- 
Karl-Heinz Zimmer
Senior Software Engineer
Klarälvdalens Datakonsult AB



___
techtalk mailing list
[EMAIL PROTECTED]
http://www.linux.org.uk/mailman/listinfo/techtalk



Re: [techtalk] Open Source Projects

2001-02-16 Thread Laurel Fan

If you don't have anything really specific, you probably want to
contribute to an existing project.

First, find something that you'd be interested in working on, such as
a program you use or a project working on something that interests
you.  http://www.sourceforge.net is a good place to look for early
stage projects.

Second, get a feel for what the project is like, what they're working
on at the moment, etc.  Check out TODO lists (either on the web site
or in file included with the source distribution).  Read the developer
mailing list.  Take a look at the code to see if the style and quality
is something you want to work with.

Once you've picked something, join the developer mailing list, and
send a message to briefly introduce yourself and tell them what you'd
like to work on.

Make sure you know how to use cvs, patch, etc.

(if you're interested in working on multiplayer online roleplaying
games, the project I occasionally work on, Worldforge (site at
http://www.worldforge.org) is always looking for people to work on a
bunch of different types of things)


___
techtalk mailing list
[EMAIL PROTECTED]
http://www.linux.org.uk/mailman/listinfo/techtalk



Re: [techtalk] Open Source Projects

2001-02-16 Thread James Sutherland

On Fri, 16 Feb 2001, A Kozic wrote:

> I'm a college student, and I was looking for a part time job, just for the
> sake of experience & such. (I can get more money sponging off my mother
> when I don't have a job. I love my mom...)
> 
> But I was thinking, I'd much rather code at home in sweats for free
> than get dressed up, drive somewhere in the car I don't have, and code for
> money. So, Open Source.
> 
> Any advice for a Linux/GNU newbie, with good C++/Java skills and some time
> on her hands?

Hrmmm

How much do you know about e-mail protocols (SMTP, IMAP, POP3) and
non-blocking I/O? (I have the beginnings of an idea which might turn into
a reasonable open source project...)


James.


___
techtalk mailing list
[EMAIL PROTECTED]
http://www.linux.org.uk/mailman/listinfo/techtalk



Re: [techtalk] Netscape Font Problem

2001-02-16 Thread Anmol Khirbat

Hi

This is where I got the info to fix my ugly netscape fonts.
http://www.mandrakeuser.org/connect/cbrowse2.html

HTH

bye :)
Anmol

On Fri, 16 Feb 2001, Phil Savoie wrote:

> 
> Hi All,
> 
> Sorry about this but I seem to recall a solution as to how to ensure
> netscape fonts display properly by switching a line in a file
> somewhere.  I can't seem to find that message and was wondering if
> someone could help me out with what I would have to do.
> 
> Hanging my head in shame,
> 
> Phil
> 
> ___
> techtalk mailing list
> [EMAIL PROTECTED]
> http://www.linux.org.uk/mailman/listinfo/techtalk
> 


___
techtalk mailing list
[EMAIL PROTECTED]
http://www.linux.org.uk/mailman/listinfo/techtalk