LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware
User Name
Password
Linux - Hardware This forum is for Hardware issues.
Having trouble installing a piece of hardware? Want to know if that peripheral is compatible with Linux?

Notices


Reply
  Search this Thread
Old 10-19-2016, 04:02 AM   #1
Novatian
Senior Member
 
Registered: Feb 2008
Location: Australia
Distribution: Mint 20.3 MATE, Android, Windows 10, MX Linux and Mint 21.1 MATE
Posts: 1,052

Rep: Reputation: 38
SSD I formatted does not mount?


In Mint I cannot mount my recently formatted SSD, WD Elements. Does it need a partition? I wiped it with a Windows program. I can put on a partition as well if that makes it work.

I would appreciate any help.
 
Old 10-19-2016, 05:39 AM   #2
pan64
LQ Addict
 
Registered: Mar 2012
Location: Hungary
Distribution: debian/ubuntu/suse ...
Posts: 21,837

Rep: Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308
would be nice to explain exactly what did you try: how did you wipe it, how did you format it and how did you try to mount it.
Since we have no idea what's happened hard to say partitioning will work. (actually it can work without that too).

https://duckduckgo.com/?q=how+to+ask...nonical&ia=web
 
Old 10-19-2016, 07:59 AM   #3
Novatian
Senior Member
 
Registered: Feb 2008
Location: Australia
Distribution: Mint 20.3 MATE, Android, Windows 10, MX Linux and Mint 21.1 MATE
Posts: 1,052

Original Poster
Rep: Reputation: 38
I think I used freeware, parted magic, I formerly had a sticky Fedora distro on it and had difficulty formatting it. Overwrite with zeros.

Plugged in this external memory does not appear on the desktop alike the other card. When searched for in, my computer, WD Elements is there, when clicked on it reads that it cannot be mounted. It will not open.
 
Old 10-19-2016, 08:05 AM   #4
pan64
LQ Addict
 
Registered: Mar 2012
Location: Hungary
Distribution: debian/ubuntu/suse ...
Posts: 21,837

Rep: Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308
it looks like you did not format it properly. That's why no filesystem was found.
 
Old 10-19-2016, 10:46 AM   #5
lazydog
Senior Member
 
Registered: Dec 2003
Location: The Key Stone State
Distribution: CentOS Sabayon and now Gentoo
Posts: 1,249
Blog Entries: 3

Rep: Reputation: 194Reputation: 194
What pan65 said.
Post the output from parted -l command.

Last edited by lazydog; 10-19-2016 at 10:49 AM.
 
Old 10-19-2016, 12:08 PM   #6
kilgoretrout
Senior Member
 
Registered: Oct 2003
Posts: 2,987

Rep: Reputation: 388Reputation: 388Reputation: 388Reputation: 388
Quote:
Does it need a partition?
There's your problem. Partition the drive and then format the partition; that should solve the problem.
 
Old 10-19-2016, 12:16 PM   #7
Emerson
LQ Sage
 
Registered: Nov 2004
Location: Saint Amant, Acadiana
Distribution: Gentoo ~amd64
Posts: 7,661

Rep: Reputation: Disabled
Quote:
Originally Posted by kilgoretrout View Post
There's your problem. Partition the drive and then format the partition; that should solve the problem.
This must be specific to WD Elements then, normally partitioning is not needed for single filesystem. Care to elaborate?
 
Old 10-19-2016, 03:27 PM   #8
kilgoretrout
Senior Member
 
Registered: Oct 2003
Posts: 2,987

Rep: Reputation: 388Reputation: 388Reputation: 388Reputation: 388
Partitioning is always needed AFAIK. Typically, an external hard drive will have one partition formatted to either vfat or ntfs when purchased. If he deleted that partition and formatted the raw device(e.g. sda instead of sda1) he would be having exactly the problem he is describing. I've never heard of it being done any other way. In fact, I didn't know it was possible to format the drive directly as a raw block device without partitioning first until I discovered it by accident. See these threads for a discussion of this topic:

https://www.linuxquestions.org/quest...-table-880149/

https://www.linuxquestions.org/quest...9/#post5588842
 
Old 10-19-2016, 03:33 PM   #9
Emerson
LQ Sage
 
Registered: Nov 2004
Location: Saint Amant, Acadiana
Distribution: Gentoo ~amd64
Posts: 7,661

Rep: Reputation: Disabled
I have been using hard drives as raw devices for 19 years, never had any issues.
 
Old 10-19-2016, 03:44 PM   #10
smallpond
Senior Member
 
Registered: Feb 2011
Location: Massachusetts, USA
Distribution: Fedora
Posts: 4,140

Rep: Reputation: 1263Reputation: 1263Reputation: 1263Reputation: 1263Reputation: 1263Reputation: 1263Reputation: 1263Reputation: 1263Reputation: 1263
Without partitions you mount like:

Code:
mount /dev/sdb /mnt/foo
With partitions you mount like:

Code:
mount /dev/sdb1 /mnt/foo
Use the first way if you have a typical USB stick with a vfat filesystem and no partitions.
 
Old 10-19-2016, 03:48 PM   #11
kilgoretrout
Senior Member
 
Registered: Oct 2003
Posts: 2,987

Rep: Reputation: 388Reputation: 388Reputation: 388Reputation: 388
Emerson, are you using LVM? You can add a raw unpartitioned drive to an LVM group but you wouldn't normally do that with an external hard drive.
 
Old 10-19-2016, 03:49 PM   #12
Emerson
LQ Sage
 
Registered: Nov 2004
Location: Saint Amant, Acadiana
Distribution: Gentoo ~amd64
Posts: 7,661

Rep: Reputation: Disabled
No LVM, below is my /home filesystem as an example.
Code:
~ # file -s /dev/sdb
/dev/sdb: SGI XFS filesystem data (blksz 4096, inosz 256, v2 dirs)
 
Old 10-19-2016, 07:43 PM   #13
rknichols
Senior Member
 
Registered: Aug 2009
Distribution: Rocky Linux
Posts: 4,777

Rep: Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212
Partitioning has never been necessary in Linux. You will get a warning from mkfs.ext{2,3,4} if you ask it to create a filesystem on an unpartitioned drive, but it will happily do so if you confirm that this is your intention.
 
Old 10-19-2016, 08:19 PM   #14
Emerson
LQ Sage
 
Registered: Nov 2004
Location: Saint Amant, Acadiana
Distribution: Gentoo ~amd64
Posts: 7,661

Rep: Reputation: Disabled
The definition of partitioning: Dividing into parts. Now, if you need only one piece, why cut?
 
Old 10-19-2016, 09:56 PM   #15
kilgoretrout
Senior Member
 
Registered: Oct 2003
Posts: 2,987

Rep: Reputation: 388Reputation: 388Reputation: 388Reputation: 388
Quote:
The definition of partitioning: Dividing into parts. Now, if you need only one piece, why cut?
Better to ask Novation and the two others in threads I previously posted. They all apparently had problems with formatted raw block devices.
 
  


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
Can't mount Blu-ray formatted with Windows7 Keisuke Fuse Linux - General 8 08-05-2015 07:23 PM
How to mount usb hdd formatted with reiserfs? Odyssey1942 Linux - Newbie 12 01-07-2010 07:42 PM
Cannot mount ext3-formatted USB drive Changes Linux - General 5 12-05-2009 05:23 PM
How to mount internal drive just formatted to ext3 Pumalite Linux - Hardware 25 04-13-2007 10:12 AM
mount partially formatted drive true_atlantis Linux - Hardware 4 04-03-2006 10:23 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware

All times are GMT -5. The time now is 08:44 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