Re: scp GUI?

2009-02-20 Thread Paulo Brito
you can mount a remote folder with sshfs and then browser that folder with any software 2009/2/20 Jeff D > On Fri, 20 Feb 2009, Nagy Daniel wrote: > > > Is there a GUI for SCP? I mean like browsing through scp just like in a > > folder, in Midnight Commander. > > > > Thank you! > > > > filezilla

Re: [OT] Linux on the London Tube?

2009-02-17 Thread Paulo Brito
lol!! That's funny! 2009/2/17 Richard Lyons > I saw this ad on the tube recently, and was disappointed to find it wasn't > inviting people to migrate from the dark side > > http://the-place.net/penguin/migrate.jpg > > But maybe we should... > > richard > > > -- > To UNSUBSCRIBE, email to debian-

Re: netcat in listen mode don't exit

2009-02-13 Thread Paulo Brito
> > If you want to just what's changed in the log file since the last time > you connected, look at the package logtail. > > For example you might run this command: > > while :; do nc -l -p 5558 -c "logtail /var/log/syslog"; done > > This would have nc exit when it's done dumping /var/log/syslog an

Re: netcat in listen mode don't exit

2009-02-11 Thread Paulo Brito
2009/2/11 Michael Iatrou > When the date was Wednesday 11 February 2009, Paulo Brito wrote: > > > 2009/2/11 Michael Iatrou > > > > > When the date was Wednesday 11 February 2009, Paulo Brito wrote: > > > > I"m trying to setup netcat so it serves

Re: netcat in listen mode don't exit

2009-02-11 Thread Paulo Brito
It should, but it doesn't. It only made diference when there's no connection. When a connection is made, even with -w 5 (for instance), nc waits forever. 2009/2/11 Sudev Barar > 2009/2/12 Paulo Brito : > > Michael, thanks for your reply. But if you read my entire email, yo

Re: netcat in listen mode don't exit

2009-02-11 Thread Paulo Brito
ary 2009, Paulo Brito wrote: > > > I"m trying to setup netcat so it serves logs to other systems. When a > > client connects, the server starts to send some logs. > > > > I run netcat in listem mode like this: > > > > # nc -l -p 5558 -c "tail -f /var/l

netcat in listen mode don't exit

2009-02-11 Thread Paulo Brito
I"m trying to setup netcat so it serves logs to other systems. When a client connects, the server starts to send some logs. I run netcat in listem mode like this: # nc -l -p 5558 -c "tail -f /var/log/syslog" the client I run like this: # nc 5558 The problem is that the server keeps running w