4

First time using linux/ubuntu, so pardon the noobiness.

I created a boot disk and booted from it using the 'try' method. I've barely done anything and I'm getting error messages stating that I have low disk space (on the desktop/home folder). AFAIK, I have no real disk space issues so I presume it's some kind of partitioning matter (though I really don't know).

When I try to trace back directories on the home folder - I can't get beyond "File System" or "Home", and when I try to get some indication from Gparted I can not find any drive labeled 'Home' or the like.

How do I find where the home folder is located? How can I re-partition it or somehow increase its potential size?

This is driving me absolutely nuts. Thank you to anyone who can help.

Braiam
  • 69,112

3 Answers3

4

The simplest way is to open the System Monitor by clicking the dash icon (top left) and entering System Monitor as the search. When it opens, click the File Systems tab and it will show you where everything is placed.

enter image description here

/dev stands for device. HDDs will normally be named SDA, SDB, SDC, etc.

enter image description here

The above shows 3 HDDs and 1 DVD rom. My linux installation is on HDD "b" (Hence, dev/sdb) and includes 3 partitions, one for Root "/dev/sdb/", one for boot "/dev/sdb/boot" and one for home "/dev/sdb/home".

A second way of determining would be to use fdisk. Open a terminal (Press ControlAltT), enter sudo fdisk -l and input your password when prompted. It will output your drives and how they are configured.

enter image description here

James
  • 17,576
  • 5
  • 25
  • 38
1

In terminal

df /home

or for another path

df /some/other/path

If you have more than 2 drives, you can check this by running df some_path for a path on each drive. When you do this, df should return different responses for the different paths on different drives.

0

Fire up a terminal and type df and press enter. This will give a list of all drives, how much free space they have and where they are mounted. your home directory is probably in the form of /home/username/ where username is your username. If you have a separate drive for home directories it will probably be mounted on /home, but based on how your question was asked, I suspect that everything is on the flash drive and it is almost full, and that your next question will be how do I move my home directory to a different drive.

hildred
  • 862