I am very new at Ubuntu, actually, linux in all its entirety. I've installed Ubuntu to an old pc I had laying around so I can have something to keep myself occupied with, and I've noticed that I've "run out of space" on the drive it's installed on.
I looked in the system settings and it said that I had a 78 gigabyte drive in, and it's mounted, but whenever I try to install a program using something like sudo apt-get install chromium-browser
, it will tell me that I don't have enough space. What I'm trying to find out is how I would specify where I want the program to be installed, like the other drive that has space.
Any and all help would be greatly appreciated, thank you all!
EDIT:
I was asked to type in sudo parted -1
and when i did, it said:
parted: invalid option == '1'
usage: parted [-hlmsv] [-a(align)] [DEVICE [COMMAND [PARAMETERS]]...]
When I typed in df -h
, it said that /cow
had 988M, 100% use; udev
had 977M
, 1% use; tmpfs
had 198M
, 1% use; /dev/sdb1
had 30G
, 4% use; /dev/loop0
had 953M
, 100& use; none
had 4.0K
, 0% use; and the only other significant one was /dev/sda1
, which had 72G
and had 1% use.
sudo parted -l
(run from a terminal - you can copy / paste it) - & alsodf -h
? – Mark Williams Mar 14 '15 at 00:00/cow
is used on Live USB sticks with persistence enabled. Please, post the full output ofsudo lsblk
anddf -h
. – Eric Carvalho Mar 14 '15 at 14:06parted
command: it should be-l
, not-1
. As for the output ofdf -h
, it would be great if you paste it into the editor verbatim and format it as a code listing with the<$>
button from the editor toolbar. – David Foerster Mar 19 '15 at 01:15