LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 11-29-2021, 12:26 AM   #1
JohnB2002
LQ Newbie
 
Registered: Nov 2021
Location: Alberta, Canada
Posts: 13

Rep: Reputation: Disabled
System show wrong capacity HD


Running Linux-Mint.
System reporting 1TB hard drive but the installed drive is only 250GB.
Help on how to fix this would greatly be appreciated.
(P.S.: I am new to LINUX.)
 
Old 11-29-2021, 12:56 AM   #2
mrmazda
LQ Guru
 
Registered: Aug 2016
Location: SE USA
Distribution: openSUSE 24/7; Debian, Knoppix, Mageia, Fedora, others
Posts: 5,852
Blog Entries: 1

Rep: Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074
Let's be sure we both know what you are looking at. Show us output from:
Code:
sudo parted -l
Please paste it here using code tags as I have done for the above command.
 
1 members found this post helpful.
Old 11-29-2021, 01:11 AM   #3
JohnB2002
LQ Newbie
 
Registered: Nov 2021
Location: Alberta, Canada
Posts: 13

Original Poster
Rep: Reputation: Disabled
I am new to this... How do i post the results? Can I copy to clicpboard and paste??
 
Old 11-29-2021, 01:16 AM   #4
mrmazda
LQ Guru
 
Registered: Aug 2016
Location: SE USA
Distribution: openSUSE 24/7; Debian, Knoppix, Mageia, Fedora, others
Posts: 5,852
Blog Entries: 1

Rep: Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074
Quote:
Originally Posted by JohnB2002 View Post
I am new to this... How do i post the results? Can I copy to clicpboard and paste??
That should be perfect, after you've added the surrounding code tags.
 
Old 11-29-2021, 01:22 AM   #5
JohnB2002
LQ Newbie
 
Registered: Nov 2021
Location: Alberta, Canada
Posts: 13

Original Poster
Rep: Reputation: Disabled
Well MRMAZDA.... Thanks for trying to help but being new to this, I don't know how to do that. so I guess we will end here.
Again, thanks
 
Old 11-29-2021, 01:28 AM   #6
mrmazda
LQ Guru
 
Registered: Aug 2016
Location: SE USA
Distribution: openSUSE 24/7; Debian, Knoppix, Mageia, Fedora, others
Posts: 5,852
Blog Entries: 1

Rep: Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074
Don't know how to do what? Copy & paste? Those howtos are all over the internet. Run the command sudo parted -l? Find an X terminal in your Mint DE's menu, open it, type the command, then copy and paste from the terminal window into the web browser you are running to use this web site.
 
Old 11-29-2021, 01:34 AM   #7
JohnB2002
LQ Newbie
 
Registered: Nov 2021
Location: Alberta, Canada
Posts: 13

Original Poster
Rep: Reputation: Disabled
I did Copy to the clipboard but will not paste HERE>..

Copy and paste is not the problem.... The problem is "Surrounding with code tags"
Enough of this anyway... There is no need to be nasty..
Goodbye
 
Old 11-29-2021, 01:58 AM   #8
mrmazda
LQ Guru
 
Registered: Aug 2016
Location: SE USA
Distribution: openSUSE 24/7; Debian, Knoppix, Mageia, Fedora, others
Posts: 5,852
Blog Entries: 1

Rep: Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074
I gave you a link to using code tags in my first reply. Is there something in it you do not understand?

If you click the link "Quote" in post #2 or #4, you can see how code tags were used in my replies.
 
Old 11-29-2021, 02:25 AM   #9
astrogeek
Moderator
 
Registered: Oct 2008
Distribution: Slackware [64]-X.{0|1|2|37|-current} ::12<=X<=15, FreeBSD_12{.0|.1}
Posts: 6,269
Blog Entries: 24

Rep: Reputation: 4206Reputation: 4206Reputation: 4206Reputation: 4206Reputation: 4206Reputation: 4206Reputation: 4206Reputation: 4206Reputation: 4206Reputation: 4206Reputation: 4206
Welcome to LQ!

I am certain there was no intent to be rude in any way. Wrapping code and data snippets inside code tags just means: [CODE] paste here [/CODE]. Doing so will preserve indentation and provide other visual clues which make it easier for others to comprehend. You may write those yourself as shown, or use the # button available with Advanced edit options. (A complete list of BBCode tags is always available via a link near the bottom of every thread view).

Doing so changes this...

Model: ATA Hitachi HTS54503 (scsi)
Disk /dev/sda: 320GB
Sector size (logical/physical): 512B/512B
Partition Table: msdos
Disk Flags:

Number Start End Size Type File system Flags
1 1049kB 215GB 215GB extended
5 2097kB 105GB 105GB logical ext4
6 105GB 110GB 4388MB logical linux-swap(v1)
7 110GB 210GB 100GB logical ext4
8 210GB 215GB 5263MB logical ext2
2 215GB 320GB 105GB primary ext4


... into this...

Code:
Model: ATA Hitachi HTS54503 (scsi)
Disk /dev/sda: 320GB
Sector size (logical/physical): 512B/512B
Partition Table: msdos
Disk Flags:

Number  Start   End    Size    Type      File system     Flags
 1      1049kB  215GB  215GB   extended
 5      2097kB  105GB  105GB   logical   ext4
 6      105GB   110GB  4388MB  logical   linux-swap(v1)
 7      110GB   210GB  100GB   logical   ext4
 8      210GB   215GB  5263MB  logical   ext2
 2      215GB   320GB  105GB   primary   ext4
... which helps others to understand your problem more easily!

Good luck!

Last edited by astrogeek; 11-29-2021 at 02:33 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
My external hard drive doesn't show any files, and I can see just the empty space capacity farzinss Linux - Hardware 4 07-24-2021 04:05 PM
Mass storage gadget woes (wrong capacity) lalaw Linux - Kernel 0 02-07-2021 09:48 PM
Best capacity planning or capacity management tool decenter Linux - Software 1 03-27-2015 03:11 PM
[SOLVED] Why doesn't fdisk show full capacity of my flash drive? EStyles Linux - Hardware 6 01-25-2013 02:38 PM
System consolidation and capacity planning.? ravindukelum Linux - Server 3 10-22-2009 01:35 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 01:40 AM.

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