Re: [gentoo-user] Portage... where dreams come from....

2005-05-25 Thread Barry Marler
On 5/25/05, Nick Rout [EMAIL PROTECTED] wrote:
 
 On Wed, 25 May 2005 18:56:06 -0400
 Jerry McBride wrote:
 
 
  Everytime I go to the portage tree, I find myself CONSTANTLY finding new 
  gems
  and thing-a-ma-bobs that make my linux time a fun time.
 
  Thank you.
 
 
  Jerry McBride
 
 Is there an easy way to find out what new packages have been added after a 
 sync? (other than backing up a package list and then diffing it?)
 
  --
  gentoo-user@gentoo.org mailing list
 
 --
 Nick Rout
 
 --
 gentoo-user@gentoo.org mailing list
 

emerge app-portage/esearch  sudo esync

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Switch from devfs to udev?

2005-05-23 Thread Barry Marler
On 5/23/05, Tim Igoe [EMAIL PROTECTED] wrote:
I'm guessing it can be removed - i've just never bothered to do so withthis box.--Tim Igoe[EMAIL PROTECTED]http://tim.igoe.me.uk
 - Personal Sitehttp://tv.igoe.me.uk - UK TV GuideComputers are like Air-con, open windows and they stop working!
S. Schwartz wrote:
 Tim Igoe wrote:

Install udev as in portage. Then edit the kernel to remove devfs -
recompile and reboot.
Job done, it should say using udev at bootup.

 Worked for me :-)
 I've got a question regarding this switch: Can sys-fs/devfsd be unmerged
 or is it still somehow needed?

 Sigi

You don't need it. 



Re: [gentoo-user] Using rsync to update a remote directory via ssh.

2005-05-06 Thread Barry Marler
On 5/5/05, Charles Pittman [EMAIL PROTECTED] wrote:
The following is a question I intended to post earlier, but decided to
lookup my own answer (and happened to find it in the manpage): I have
ssh access to my webhost. I am looking for an easy way to keep
~/public_html updated on the remote site using ssh.

I was using scp to transfer files, but I knew that there had to be an
easier way. I searched the internet for a solution and didn't find a
direct one, when I thought of rsync (1-way update). Anywho, I checked
the rsync manpage and there was an interesting flag: -e

This particular flag allows you to pick the remote shell you wish to
use (such as ssh). I created an alias using my new command and now it's
easy to update my site.

For those interested, here is the command:
rsync -v -c -r -u -P -essh -luser --delete-excluded --stats /local/dir/ remote_address:/remote/dir/

See man rsync(1) for information about the flags used.

Hopefully this helps someone out there.


By default, rsync uses ssh.