Probelm with First boot

You have a problem with Salix? Post here and we'll do what we can to help.
Post Reply
sophmod
Posts: 2
Joined: 18. Feb 2013, 06:45

Probelm with First boot

Post by sophmod »

So i downloaded like 3 versions of Salix, tried to install all of them. The way its set up is Salix is on a dedicated harddrive and then i have a harddrive for windows. Durring the installation i chose the autopartition option, because i was just going to use the whole harddrive for it. I did not however create the USb like it asks you to do at the end of the process. But when i try to actually boot into salix i get error messages galore "couldnt mount because of unsupported optional features" "kernel panic - not syninc" after all the flying text of the boot it just hangs on a blank screen with a flashing curser in the corner.

my hardware is this, which is what i think might be the problem.
asus M4a89GTD Pro motherboard
AMD phenom II x6
4 gigs of ram
AMD radeon HD 6800 series

I have searched this forum and others to try and figure out the problem but i havent come up with anything other then the USB at the end of the installation, if thats really the problem thats silly.

Any help is greatly appreciated, thank you in advanced
User avatar
hakerdefo
Posts: 91
Joined: 9. Dec 2012, 08:12
Contact:

Re: Probelm with First boot

Post by hakerdefo »

You need to modify your /etc/lilo.conf and /etc/fstab files to only use the disk UUIDs instead of the device names. You can view the UUIDs of your partitions with,

Code: Select all

ls -l /dev/disk/by-uuid/
Now modify /etc/fstab entries. For example old /etc/fstab entry is like this

Code: Select all

/dev/sda1       /                ext4        defaults,noatime         1   1
Change it to loo like following by using the UUID

Code: Select all

UUID=xxxxx       /                ext4        defaults,noatime         1   1
In the above example xxxxx is the UUID of /dev/sda1
Now you need to change "root=" entry in your /etc/lilo.conf from something like this

Code: Select all

root=/dev/sda1
to

Code: Select all

root="UUID=xxxxx"]
You can use any live cd to accomplice the above.
I hope this solves your problem :)
sophmod
Posts: 2
Joined: 18. Feb 2013, 06:45

Re: Probelm with First boot

Post by sophmod »

well it turns out that all my problems were with my graphix card. i took it out and now it boots up just fine. the only problem now is that it still only boots with a "core" install. which i have no ideea how to set up my internet or anything on slack. so i cant find a driver for my graphix card
User avatar
laprjns
Salix Warrior
Posts: 1113
Joined: 28. Aug 2009, 01:30
Location: Connecticut USA

Re: Probelm with First boot

Post by laprjns »

sophmod wrote:well it turns out that all my problems were with my graphix card. i took it out and now it boots up just fine.
So from this I assume that your motherboard has integrated graphic. Maybe there is a hardware conflict with the integrated graphics and the Radeon card. Try reinstalling the graphic card, and disable the integrated graphics card in the motherboard's BIOS.
the only problem now is that it still only boots with a "core" install. which i have no idea how to set up my internet or anything on slack. so i cant find a driver for my graphix card
I think your best path is to reinstall using the "Full" option.
“The past was erased, the erasure was forgotten, the lie became the truth.”
― George Orwell, 1984
User avatar
hakerdefo
Posts: 91
Joined: 9. Dec 2012, 08:12
Contact:

Re: Probelm with First boot

Post by hakerdefo »

sophmod wrote:well it turns out that all my problems were with my graphix card. i took it out and now it boots up just fine. the only problem now is that it still only boots with a "core" install. which i have no ideea how to set up my internet or anything on slack. so i cant find a driver for my graphix card
The error you described "couldnt mount because of unsupported optional features" is not likely to occur due to graphics card related problem. Anyways wish you luck with a full install :)
Post Reply