Re: [gentoo-user] "Package in world file is not installed"

2003-03-19 Thread Mark A Basil
This is somewhat off topic, but where, exactly, is the 'world file' located?  
I was looking for this the other night, and couldn't find it.  

Thanks,

Mark

On Wednesday 19 March 2003 09:13 am, Ian Tindale wrote:
> On Wednesday 19 March 2003 1:35 pm, Don Smith wrote:
> > Ian Tindale wrote:
> > >Every time I try for an emerge world, I get a series of "Package in
> > > world file is not installed" yadda yadda yadda messages.
> >
> > Try running regenworld.  It will double check your world file.
>
> Just tried that. Still does it.

--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Xfree 4.3.0-r1

2003-03-11 Thread Mark A Basil
Actually, it should be
 
ACCEPT_KEYWORDS="~x86"

Sorry I missed that before.

On Tuesday 11 March 2003 12:52 pm, brett holcomb wrote:
> Try ACCEPT="~x6"; emerge xfree-4.3.0-r1
>
> On 11 Mar 2003 18:45:08 +
>   Patrick Marquetecken <[EMAIL PROTECTED]>
>
> wrote:
> >Hi,
> >
> >i can see xfree-4.3.0-r1.ebuild in my portage dir but how
> >do i install
> >it?
> >
> >Patrick
> >--
> >Knowledge in a databank,is like food which is in a
> >deepfreeze.
> >Nothing comes out better than what is initially put in.
> >
> >PGP Key: http://users.pandora.be/rivendell/marquetp.gpg
> >Registered Linux User #44550 http://counter.li.org
> >
> >
> >--
> >[EMAIL PROTECTED] mailing list
>
> --
> [EMAIL PROTECTED] mailing list

--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Xfree 4.3.0-r1

2003-03-11 Thread Mark A Basil
That should be "~x86"

-Mark

On Tuesday 11 March 2003 12:52 pm, brett holcomb wrote:
> Try ACCEPT="~x6"; emerge xfree-4.3.0-r1
>
> On 11 Mar 2003 18:45:08 +
>   Patrick Marquetecken <[EMAIL PROTECTED]>
>
> wrote:
> >Hi,
> >
> >i can see xfree-4.3.0-r1.ebuild in my portage dir but how
> >do i install
> >it?
> >
> >Patrick
> >--
> >Knowledge in a databank,is like food which is in a
> >deepfreeze.
> >Nothing comes out better than what is initially put in.
> >
> >PGP Key: http://users.pandora.be/rivendell/marquetp.gpg
> >Registered Linux User #44550 http://counter.li.org
> >
> >
> >--
> >[EMAIL PROTECTED] mailing list
>
> --
> [EMAIL PROTECTED] mailing list

--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] CDROM not usable

2003-03-10 Thread Mark A Basil
Hey Richard,

make sure that /dev/cdroms/cdrom0 actually exists, and is a link to your 
correct cdrom device.

Here's mine:

/dev/cdroms/cdrom0 -> /dev/ide/host0/bus1/target0/lun0/cd

bus0 would be primary and bus1 would be the secondary.  In this case, my cdrom 
is hdc.

If that looks right, try supplying some output to your mount command.   Use a 
'-v' switch for verbose mode.

if the mount doesn't work, try using the "normal" devices to mount.

PM = hda
PS = hdb
SM = hdc
SS = hdd

mount -v -t iso9660 /dev/hdx /mnt/cdrom

-mark

On Monday 10 March 2003 02:44 pm, richard terry wrote:
> Bear in mind I have limited linux knowledge:
>
> I can't seem to access any cdrom/dvd on my system.
> My fstab is as below
>
> /dev/hda1   /boot   ext2noauto,noatime
> 1 1
> /dev/hda3   /   ext3noatime
> 0 0
> /dev/hda2   noneswapsw
> 0 0
> /dev/cdroms/cdrom0  /mnt/cdrom  iso9660 noauto,ro
> 0 0
> proc/proc   procdefaults
> 0 0
>
> It was obviously found during install.
>
> Could someone point me in the direction to fix this?
>
> Thanks
>
> richard
>
>
>
> --
> [EMAIL PROTECTED] mailing list

--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] I'm no tar geru

2003-03-10 Thread Mark A Basil
Hey Jesse,

Another solution would be to create a text file with what you want to backup.

i.e.

backuplist.txt
---
/usr/
/etc/
---

tar cvjpf yourbackup.tar.bz2 -T backuplist.txt

-Mark

On Monday 10 March 2003 10:58 am, Meir Kriheli wrote:
> On Sunday 09 March 2003 22:45, Jesse Jacobs wrote:
> > Hello everyone,
> >
> > I would like to backup my system minus some dirs.
> >
> > I print to a file the files/dirs i'd like to skip
> >
> > mount /dev/hda1 /boot
> > find /proc > /tar.test.txt
> > find /exports >> /tar.test.txt
> > tar -cvjpsPf -X /tar.test.txt / /exports/backup-full-090303.tar.bz2
> >
> > But when the archive starts the specified dirs are included  :)
> >
> > I hope to use this for compiling a optimised i686/athlon-xp base to be
> > used for my own rapid deployment.
> >
> > Also I've noticed the archives in /usr/portage/distfiles/*.tbz2 or
> > tar.bz2 I was hoping I could tar these and extract to the fresh base for
> > a little bandwith savings.
> >
> > Jesse Jacobs.
>
> Hi Jesse,
>
> You don't need to specify each file in the excludes file. I usually do it
> with --exclude switch and specify wild cards.
>
> I advise against using -P as it can lead to accidents. If you untar it as
> root by accident it'll overwrite your current system (since / is included).
> Let tar strip the leading / and untar in the root dir.
>
> -p is not really needed at this stage AFAIK, as it affects extract, not
> creation. You might want to  revers the order since usually after 'f' is
> passed tar is expecting the file name.
>
> Try this for example:
> tar -cvjpf /exports/backup-full-090303.tar.bz2 --directory / --exclude=proc
> --exclude=exports
>
> You can exclude other dirs as well (tmp/* contents for example).
>
> There are many tutorials on the net about it, Google will surely find some
> for you.

--
[EMAIL PROTECTED] mailing list