Trouble Starting Linux Due to Full Hard Drive

0
1
Asked By CuriousBee77 On

I've been having issues booting my Linux-based PC, as it just shows a black screen with a blinking cursor. I checked in recovery mode and found that my hard drive is nearly full—about 420GB used out of 450GB on my C drive. I suspect this is the reason for the boot issue. I tried using a Live CD and USB to delete some unnecessary files from the hard drive, but I wasn't able to do so. Can anyone help me figure out how to delete or copy large files from the hard drive using the terminal in a Live USB environment? Thanks in advance!

4 Answers

Answered By FileLiberator88 On

I was having a similar problem! What helped me was running the `rm` command manually in the terminal to delete the files I didn't need, so I'd recommend giving it a try. Just be super careful with it, as you can easily delete important files if you're not sure what you're removing. Always double-check the path before you hit enter!

Answered By TechSavant42 On

The black screen with a blinking cursor could indicate that your Nvidia drivers aren't set up correctly. Try booting with the `nomodeset` option in GRUB to see if that helps you access the system without graphical mode issues.

Answered By EmptyDiskHero On

It sounds like you're running into permission issues. If you're in a Live USB environment, try using a root shell. Usually, you can get root access by simply using the `sudo` command before your mounting commands. If the USB doesn't require a password, you might not need to enter anything. If 'mount' fails, it might mean your drive is in use or has issues.

Answered By GadgetGuru99 On

To start managing your files, open a terminal and identify your partitions using the command `lsblk`. Once you know which partition is your main drive (probably `sda2`), you can create a backup directory and mount it using `mkdir backup` and `mount /dev/sdaX backup`. You should be able to navigate and delete files from there. Just make sure you replace `sdaX` with the correct drive number you found.

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.