|
Post by franz47 on Mar 9, 2023 8:40:36 GMT
Still trying hard on the 1 GB RAM, 1 core CPU HP Probook.....
Bodhi 5.1.0 installation had worked. After finding out that my Acronis True Image could make backups of the disk, I tried to install 6.0.0 again, since recovery of the 5.1.0 backup to the hdd is a breeze.
I was patient and finally could install 6.0.0. version. I was told to remove the USB-stick and to boot. I get to the menu to choose which Ubuntu to boot, choose the "Ubuntu", thereafter the boot process hangs with no hdd activity any more and dark screen. Pressing Enter or any other key won't help. Any idea what one could do? The 7.x alpha version won't work, I checked that
I made a backup of the non-booting 6.0.0 installation hdd - checked the contents of the backup on a windows compter, it contains two partitions, one empty and one full with dirs etc. So an installation has really taken place.
|
|
R0bur
Crew Member
 
Posts: 113
Likes: 81
|
Post by R0bur on Mar 9, 2023 13:25:11 GMT
Try the "Slackware old school" installation method, i. e. using a swap partition to extend RAM.
1) Boot the computer from the official Bodhi Linux 6.0 distribution image and start the installation process.
2) Switch to the text console from the first installer dialog ("Welcome. Select Language") using [Ctrl]+[Alt]+[F2] and login as "bodhi".
3) Determine the storage device to which you want to install Bodhi:
$ lsblk -o NAME,SIZE,TYPE,MODEL I assume this is "sdx" device in the "NAME" column.
4) Wipe the logical structure of the target storage (ALL DATA WILL BE LOST!):
$ sudo wipefs -a /dev/sdx?
$ sudo wipefs -a /dev/sdx 5) Create the empty partitions block:
$ echo 'label: mbr' | sudo sfdisk /dev/sdx 5) Create 1,0 GB = 1024 MB swap partition:
$ echo '-,1024M,S,-' | sudo sfdisk /dev/sdx
6) Create the logical structure of the swap partition (it is the first partition on the target device so use digit "1"):
$ sudo mkswap /dev/sdx1 7) Activate the swap partition:
$ sudo swapon /dev/sdx1 8) Verify that the swap is active:
$ swapon NAME TYPE SIZE USED PRIO
/dev/sdx1 partition 1024M 0B -2
or
$ free -h ...
Swap: 1.0Gi
9) Close the text console seance:
$ exit 10) Switch back to the installer console ([Alt]+[F1]) and continue the installation process.
Note that you must create the target partition for the Bodhi Linux manually. Don't choose "Erase disk and install Bodhi" because it will delete the swap partition. Choose "Something else" instead, select the "free space" row, click the "+" button, choose type "Primary" and mountpoint "/" and press "Install now".
|
|
enigma9o7
Crew Member
 
Posts: 1,057
Likes: 1,112
|
Post by enigma9o7 on Mar 10, 2023 19:21:32 GMT
First I'd check if you can get to TTY (ctrl+alt+F2). If that works, then it's only the graphical desktop that's not starting, and I'd try adding "nomodeset" to startup, which can be done by editing /etc/default/grub.
On the other hand, if no TTY, I'd try adding noapic acpi=off by editing live command line from grub menu. Once I know what works then I'd edit grub to make it default.
|
|