this post was submitted on 30 Sep 2024
25 points (93.1% liked)

Linux

47509 readers
1239 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS
 

Hi everyone,

I have a finely tuned Fedora 40 image that I cloned using Clonezilla (see: https://sh.itjust.works/post/25762756)

I wanted to deploy it on my old Acer Aspire 5737z but it won’t boot. It’s just displaying a — on a black screen for hours.

I’m not so knowledgeable but I guess it means I would have to reinstall the GRUB or whatever.

I’ve booted into my Fedora Live USB and tried the lsblk command people were talking about on the web (I don’t understand the terminal). Here's the result.

I think the SDA disk is the one I would like to boot from.

Can anyone help me understand what I have to do 😇🙏

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 9 points 1 day ago (2 children)

Hey there!

It sounds like you’re on the right track! The black screen with a dash usually means the bootloader (GRUB in this case) might need some love. So, you’ll likely need to reinstall GRUB on your old Acer.

Here's a simple way to do it from your Fedora Live USB:

  1. Open a terminal (if it’s not already).
  2. Run lsblk to confirm that your old Acer’s drive is /dev/sda.
  3. Mount the Fedora partition with something like:
    sudo mount /dev/sda1 /mnt
    
    (Make sure /dev/sda1 is the correct partition; adjust if needed).
  4. Install GRUB by running:
    sudo grub2-install --boot-directory=/mnt/boot /dev/sda
    
  5. Then create a new GRUB config with:
    sudo grub2-mkconfig -o /mnt/boot/grub2/grub.cfg
    
  6. Reboot and fingers crossed, it should work!

It sounds a bit like magic (or some weird old ritual), but it should help your Acer find its way. Give it a shot! If it doesn’t work, let us know exactly what you see. We’ve got your back!

[–] hinterlufer 5 points 1 day ago (1 children)

Take that as you will, but you sound like ChatGPT.

[–] [email protected] 4 points 1 day ago (1 children)

I get these vibes too, their other comment are in the same style.

[–] hinterlufer 5 points 1 day ago

Yep, the other comment is even more ChatGPT-ish. And the account was created today. Guess that's a bot.

[–] [email protected] 4 points 1 day ago* (last edited 1 day ago)

Thanks for the precise answer adapted to a rookie like me😇😅

Sadly it ain't working. I guess the GRUB installing part which is problematic.