NicelyMKVI wrote:Well it has been 8 days since I bricked my system. Have I reached the point where I need to re-install and lose my info? I am on the livecdvd now and still can not find how to mount my hard drive.
OK here's a little bit of homework

Look into 'mount' and 'chroot' commands (forum, wiki, google, 'man mount' and 'man chroot' in a terminal)
Tomorrow, I'll dig up what I've written down on the chroot procedure (eternal gratitude to IWonder for helping me out with that once!) and see if I can help, too knackered for that atm after trying to fix a couple of things on my own system (and not having succeeded - yet! hehe)
For now, I'm gonna roll me one, smoke that spliff and go to bed

(Five minutes later...)
Ow well...................why not give it a go anyways...
If you know what your / partition is, you can use following commands in a terminal, as root.
I will mention
sda3 in the commands below, as that is my / partition (sda1 is my /boot, sda2 swap).
If your / partition is not sda3 but, for example, sdc2, replace sda3 with, in this example, sdc2!Should your / partition be sdb1.....well, you get the idea.
- Code: Select all
mkdir /mnt/sda3 && mount -t ext3 /dev/sda3 /mnt/sda3
- Code: Select all
cp -L /etc/resolv.conf /mnt/sda3/etc && mount -t proc none /mnt/sda3/proc
- Code: Select all
mount -o bind /dev /mnt/sda3/dev
- Code: Select all
chroot /mnt/sda3 /bin/bash
CAUTION! In that particular terminal, you WILL be able to read, copy, alter and delete files from your INSTALLED environment! Above commands just made that terminal think it's not in the live-dvd-environment anymore!
DO NOT DO THIS IF YOU HAVE NO IDEA WHAT I AM TALKING ABOUT OR IF YOU DO NOT KNOW WHERE (or what) YOUR / PARTITION IS! And if you do this, BE CAREFUL!Good, now that I've scared you enough: In this terminal, you'll be able to take at look at logs, config files, errors, on your installed environment, which are what the experts here will need to guide you from there.
Also, this is where you manipulate your, for example, xorg.conf and eselect.
I'm afraid I'm not *nix savvy enough to know exactly what you're going to have to do, but the big guys will take it from here, I'm sure

Sorry for shouting (bold caps) at ya, and NOW I'm gonna roll me that d00b!

/ReemZ