brodders wrote:Hi,
That drive is not mentioned in the manual partitoner.... so I assume it does NOT figure with this problem.
i do not understand ... you can boot in livedvd ? Here what tell to you a command like:
- Code: Select all
cat /proc/partitions
major minor #blocks name
8 0 117220824 sda
8 1 10265503 sda1
8 2 20531070 sda2
8 3 63962797 sda3
8 5 5245191 sda5
8 6 2096451 sda6
8 7 2096451 sda7
8 8 4192933 sda8
8 9 4192933 sda9
8 10 2096451 sda10
8 11 2538238 sda11
8 16 117220824 sdb
8 17 10265503 sdb1
8 18 20531070 sdb2
8 19 52645005 sdb3
8 21 5245191 sdb5
8 22 3148708 sdb6
8 23 3148708 sdb7
8 24 5245191 sdb8
8 25 5245191 sdb9
8 26 10265503 sdb10
8 27 1477948 sdb11
8 32 390711384 sdc
8 33 185197288 sdc1
8 34 205511512 sdc2
you can see all hdd devices? if is true then you problem is in other part of install process ...
if you can work in livedvd sabayon, and have a internet acces you first move should be to update the anaconda installer, select "update installer" icon and run it ... then you always run gparted first to see how you drives and partitions are layed-out and recognised. Then you can 'manual partition' first, and set a diferent name for every partition to not confuse where you will put the new sistem. Here you need to check if all disk can be see also. Finally check all you settings again, apply the changes, maybe make a partition table backup so that you can revert what you are doing, you should remember now that all you setting still can be reverted back if you make a mistake partitions can be restored, you are in livedvd and no hdd partition is mounted. Here a command like:
- Code: Select all
sfdisk -d /dev/sda > sda_backup
sfdisk -d /dev/sdb > sdb_backup
sfdisk -d /dev/sdc > sdc_backup
is a good move for me also

. if something go wrong in my endless cycle of sabayon fresh updates, i just do a
- Code: Select all
sfdisk /dev/sda < sda_backup
sfdisk /dev/sdb < sdb_backup
sfdisk /dev/sdc < sdc_backup
and all my pain are gone ... When all is done quit from parted and run the installer, in partition phase just set the path's and check again you setup.
For the swap problem ... when you begin the instalation be sure that swap partition is
unmounted. If is already one and in livedvd phase is detected and mounted you need to unmount it. I suspect that this is the problem with
- Code: Select all
swaping it cannot initialise swap
error message. For example just do a
- Code: Select all
swapon -s
Filename Type Size Used Priority
/dev/sda7 partition 2096440 77304 -1
command to see if is some swap partition mounted, and then an
- Code: Select all
swapoff -v /dev/sda7
.
This is working for my system

)