LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Linux Mint
User Name
Password
Linux Mint This forum is for the discussion of Linux Mint.

Notices


Reply
  Search this Thread
Old 05-24-2019, 10:47 AM   #1
xstation108
LQ Newbie
 
Registered: May 2019
Posts: 21

Rep: Reputation: Disabled
just upgraded to mint 19 need more space please make suggestions


just upgrade to mint 19 64 bit but need more space from the links below can u tell me if extened partition can be joined to make more room


https://pasteboard.co/IgbuGvM.png

this is more detailed and shows detailed partition types/sizes

http://paste.debian.net/1082901/

this is a snapshot size but can be deleted

https://paste.debian.net/1082903/

now here is what i have found----from debian paste bin 1082901

ID-3: /home/amma size: 909G used: 28G (4%) fs: ecryptfs dev: N/A

so 909-28=881 free space?


ID-2: /boot size: 236M used: 197M (89%) fs: ext2 dev: /dev/sda1

dido

so how to use gparted from graphical interface to make space please

Last edited by xstation108; 05-24-2019 at 01:09 PM. Reason: typo
 
Old 05-24-2019, 06:04 PM   #2
syg00
LQ Veteran
 
Registered: Aug 2003
Location: Australia
Distribution: Lots ...
Posts: 21,129

Rep: Reputation: 4121Reputation: 4121Reputation: 4121Reputation: 4121Reputation: 4121Reputation: 4121Reputation: 4121Reputation: 4121Reputation: 4121Reputation: 4121Reputation: 4121
Yet another example of the xyproblem

Tell us what your (perceived) problem is, then maybe someone can provide an answer that actually makes sense.
 
1 members found this post helpful.
Old 05-24-2019, 10:34 PM   #3
xstation108
LQ Newbie
 
Registered: May 2019
Posts: 21

Original Poster
Rep: Reputation: Disabled
Well it seems l do not have enough space and want to know if this is the case and if so what to do IE delete the the snapshot? Am l missing something here? Not understanding something
 
Old 05-24-2019, 11:39 PM   #4
syg00
LQ Veteran
 
Registered: Aug 2003
Location: Australia
Distribution: Lots ...
Posts: 21,129

Rep: Reputation: 4121Reputation: 4121Reputation: 4121Reputation: 4121Reputation: 4121Reputation: 4121Reputation: 4121Reputation: 4121Reputation: 4121Reputation: 4121Reputation: 4121
Not enough pace for what ?.
Your mint install has almost all of that 1T free and usable.

So we still don't know why you think you have a problem. Run this.
Code:
df -hT
 
Old 05-25-2019, 05:20 AM   #5
hydrurga
LQ Guru
 
Registered: Nov 2008
Location: Pictland
Distribution: Linux Mint 21 MATE
Posts: 8,048
Blog Entries: 5

Rep: Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925
The OP may be concerned at the lack of free space in the /boot partition and wants to grab some of the rest of the disk space to increase the size of that partition.
 
Old 05-25-2019, 09:45 AM   #6
xstation108
LQ Newbie
 
Registered: May 2019
Posts: 21

Original Poster
Rep: Reputation: Disabled
Not as clear an explanation as l would like

Thank you for telling me that free space is available . Looking at my first post in this thread and looking at the first URL in that thread PNG image of gparted GUI how would l create more space on my hard drive as l notice when apt-get is trying to install a new kernel l get a message that there is not enough space. I use the word space (space means mb/GB on hard drive. Please forgive my explanation not being clear

Last edited by xstation108; 05-25-2019 at 09:47 AM. Reason: Typo
 
Old 05-25-2019, 09:31 PM   #7
syg00
LQ Veteran
 
Registered: Aug 2003
Location: Australia
Distribution: Lots ...
Posts: 21,129

Rep: Reputation: 4121Reputation: 4121Reputation: 4121Reputation: 4121Reputation: 4121Reputation: 4121Reputation: 4121Reputation: 4121Reputation: 4121Reputation: 4121Reputation: 4121
Quote:
Originally Posted by xstation108 View Post
l notice when apt-get is trying to install a new kernel l get a message that there is not enough space.
This is what we needed to know - and should have been included in your first post.
As hydrurga suggested, you need to free up space in your boot partition - which will not be trivial to take from elsewhere. Mint tends to keep many old kernels - simplest to remove them probably. Run this command and post the output in your reply - don't paste it online where it might expire like the above links.
Code:
ls /boot
 
Old 05-26-2019, 05:38 AM   #8
hydrurga
LQ Guru
 
Registered: Nov 2008
Location: Pictland
Distribution: Linux Mint 21 MATE
Posts: 8,048
Blog Entries: 5

Rep: Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925
Quote:
Originally Posted by syg00 View Post
This is what we needed to know - and should have been included in your first post.
As hydrurga suggested, you need to free up space in your boot partition - which will not be trivial to take from elsewhere. Mint tends to keep many old kernels - simplest to remove them probably. Run this command and post the output in your reply - don't paste it online where it might expire like the above links.
Code:
ls /boot
Just a note that Mint 19.x now keeps two kernels, the current one and the previous one. However, I've noticed that you sometimes have to use apt-get --purge autoremove to properly get rid of any previous ones. In saying that, the OP mentions a upgrade, so perhaps there are other kernels there which are remnants from the previous version which weren't deleted during the upgrade.

Code:
dpkg -l "linux-image-*" | grep -v "^un"
dpkg -l "linux-headers-*" | grep -v "^un"
dpkg -l "linux-modules-*" | grep -v "^un"
should provide further diagnostic info in addition to the ls -l /boot.

Last edited by hydrurga; 05-26-2019 at 05:39 AM.
 
Old 05-26-2019, 06:06 AM   #9
syg00
LQ Veteran
 
Registered: Aug 2003
Location: Australia
Distribution: Lots ...
Posts: 21,129

Rep: Reputation: 4121Reputation: 4121Reputation: 4121Reputation: 4121Reputation: 4121Reputation: 4121Reputation: 4121Reputation: 4121Reputation: 4121Reputation: 4121Reputation: 4121
Quote:
Originally Posted by hydrurga View Post
Just a note that Mint 19.x now keeps two kernels, the current one and the previous one.
Nope. My new-build 19.1 Tessa retains (currently) 5 kernels and associated "bits". The initrd are the main space consumers.
 
Old 05-26-2019, 06:11 AM   #10
hydrurga
LQ Guru
 
Registered: Nov 2008
Location: Pictland
Distribution: Linux Mint 21 MATE
Posts: 8,048
Blog Entries: 5

Rep: Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925
Quote:
Originally Posted by syg00 View Post
Nope. My new-build 19.1 Tessa retains (currently) 5 kernels and associated "bits". The initrd are the main space consumers.
Well that's intriguing because my 19.1 MATE build retains 2.

Just for info, here's the code that does that: /etc/kernel/postinst.d/apt-auto-removal

Last edited by hydrurga; 05-26-2019 at 06:29 AM.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
LXer: Linux Mint-Based feren OS Gets Upgraded to Linux Mint 18.2, USB Boot Improved LXer Syndicated Linux News 0 08-18-2017 09:16 PM
LXer: More Linux Phones, More Mint Hack & Just Plain More… LXer Syndicated Linux News 0 02-27-2016 09:12 PM
[SOLVED] keyboard stopped working in X when I upgraded udev from 1.75 to 1.82After I upgraded RandomTroll Slackware 3 07-26-2012 02:48 PM
LXer: Just upgraded to 4Go or more ram? Install and enable PAE Kernel LXer Syndicated Linux News 0 12-21-2010 11:51 AM
Just upgraded libc-client2003 and can't log into IMAP any more! fishsponge Linux - General 7 05-30-2003 07:33 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Linux Mint

All times are GMT -5. The time now is 02:38 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration