LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > antiX / MX Linux
User Name
Password
antiX / MX Linux This forum is for the discussion of antiX and MX Linux.

Notices


Reply
  Search this Thread
Old 06-15-2019, 12:21 PM   #1
Sam the Man
LQ Newbie
 
Registered: Aug 2018
Posts: 17

Rep: Reputation: Disabled
MX Linux not recognizing SD Card


I'm using MX Linux and I can't get it to recognize my micro SD Card. I insert the card and nothing happens. However, it is recognized using Windows so it's not the drive. When I insert the USB Flash using MX Linux, it recognizes it right away and takes me to the directories etc. but not the SD Card.

Is there something I need to do to get it to recognize the SD Card in Linux? I am new to Linux so please make it as simple as possible if you might know the solution. Thank you in advance.
 
Old 06-15-2019, 01:09 PM   #2
fatmac
LQ Guru
 
Registered: Sep 2011
Location: Upper Hale, Surrey/Hants Border, UK
Distribution: Mainly Devuan, antiX, & Void, with Tiny Core, Fatdog, & BSD thrown in.
Posts: 5,493

Rep: Reputation: Disabled
So, what file system is on your mSDHC card(?) - maybe you need ntfs3g adding to be able to access the files on it.

(Likely it is a MS filesystem that isn't catered for in the standard set up.)

Just after inserting the card, run
Code:
dmesg|tail
in a terminal, to see if the system is recognizing it.
 
Old 06-15-2019, 01:32 PM   #3
michaelk
Moderator
 
Registered: Aug 2002
Posts: 25,704

Rep: Reputation: 5897Reputation: 5897Reputation: 5897Reputation: 5897Reputation: 5897Reputation: 5897Reputation: 5897Reputation: 5897Reputation: 5897Reputation: 5897Reputation: 5897
It could also be exFAT.

Built in or a USB card reader? Some builtin card readers require drivers or are not supported. The dmesg command will show if the device is recognized.
 
Old 06-15-2019, 05:25 PM   #4
Sam the Man
LQ Newbie
 
Registered: Aug 2018
Posts: 17

Original Poster
Rep: Reputation: Disabled
Terminal screen shot dmesg|tail

I ran dmesg|tail and have attached it to this message. By the way, this is not related to my USB port, only to my micro SD card slot. Sorry for the confusion.

I would post the screen shot of the terminal here but I am not sure how to do it so it's an attachment. u

Thank you for the help.
Attached Thumbnails
Click image for larger version

Name:	Screenshot-2.png
Views:	384
Size:	33.0 KB
ID:	30746  
 
Old 06-16-2019, 02:56 AM   #5
Sam the Man
LQ Newbie
 
Registered: Aug 2018
Posts: 17

Original Poster
Rep: Reputation: Disabled
It appears to recognize the slot and card but the results in the terminal (see attached) are "unable to read partition table" among other things. I did format the card using the NTFS format and I still got this error code.

I don't know what else to do. Any suggestions?
Attached Thumbnails
Click image for larger version

Name:	Screenshot-5.png
Views:	171
Size:	43.5 KB
ID:	30748  
 
Old 06-16-2019, 06:59 AM   #6
Lysander666
Senior Member
 
Registered: Apr 2017
Location: The Underearth
Distribution: Ubuntu, Debian, Slackware
Posts: 2,178
Blog Entries: 6

Rep: Reputation: 2470Reputation: 2470Reputation: 2470Reputation: 2470Reputation: 2470Reputation: 2470Reputation: 2470Reputation: 2470Reputation: 2470Reputation: 2470Reputation: 2470
Try formatting it with

Code:
sudo umount /dev/mmcblk0p1
sudo mkfs.vfat /dev/mmcblk0p1
Which will erase all the data, of course, but it should also give it a readable partition table.
 
Old 06-16-2019, 09:35 AM   #7
Sam the Man
LQ Newbie
 
Registered: Aug 2018
Posts: 17

Original Poster
Rep: Reputation: Disabled
reads: "mountpoint not found"

I tried it several times. Thank you for your help though.

I have a feeling it's a simple fix but I don't have enough experience using Linux.
 
Old 06-16-2019, 10:49 AM   #8
beachboy2
Senior Member
 
Registered: Jan 2007
Location: Wild West Wales, UK
Distribution: Linux Mint 21 MATE, EndeavourOS, antiX, MX Linux
Posts: 3,972
Blog Entries: 32

Rep: Reputation: 1465Reputation: 1465Reputation: 1465Reputation: 1465Reputation: 1465Reputation: 1465Reputation: 1465Reputation: 1465Reputation: 1465Reputation: 1465
You could open a Terminal and try running the following command (I recommend using copy & paste to avoid typing errors):
Code:
sudo apt-get install --reinstall udisks2
Then reboot.
 
Old 06-16-2019, 10:55 AM   #9
Lysander666
Senior Member
 
Registered: Apr 2017
Location: The Underearth
Distribution: Ubuntu, Debian, Slackware
Posts: 2,178
Blog Entries: 6

Rep: Reputation: 2470Reputation: 2470Reputation: 2470Reputation: 2470Reputation: 2470Reputation: 2470Reputation: 2470Reputation: 2470Reputation: 2470Reputation: 2470Reputation: 2470
Quote:
Originally Posted by Sam the Man View Post
reads: "mountpoint not found"

I tried it several times. Thank you for your help though.

I have a feeling it's a simple fix but I don't have enough experience using Linux.
Well, where is it mounted to then?

What does

Code:
lsblk
say?
 
Old 06-16-2019, 01:48 PM   #10
fatmac
LQ Guru
 
Registered: Sep 2011
Location: Upper Hale, Surrey/Hants Border, UK
Distribution: Mainly Devuan, antiX, & Void, with Tiny Core, Fatdog, & BSD thrown in.
Posts: 5,493

Rep: Reputation: Disabled
Well, it does seem to be recognized as a partition, but it isn't being assigned a drive designation for some reason.

I think what I would do, is to re format it with a vfat filesystem, & hope that it is recognized, & given a disk designation when inserted the next time.

Failing that, I would give it a new MBR, re partition it, & put a new vfat filesystem on it.
 
Old 06-16-2019, 02:48 PM   #11
Sam the Man
LQ Newbie
 
Registered: Aug 2018
Posts: 17

Original Poster
Rep: Reputation: Disabled
lsblk says: see attachment please

What is udisks2 before I reinstall? Thank you
Attached Thumbnails
Click image for larger version

Name:	Screenshot-6.png
Views:	178
Size:	14.9 KB
ID:	30752  
 
Old 06-16-2019, 06:23 PM   #12
michaelk
Moderator
 
Registered: Aug 2002
Posts: 25,704

Rep: Reputation: 5897Reputation: 5897Reputation: 5897Reputation: 5897Reputation: 5897Reputation: 5897Reputation: 5897Reputation: 5897Reputation: 5897Reputation: 5897Reputation: 5897
mmcblk0 is the device ID. The card reader will not be assigned a drive ID like /dev/sdb. From your first post it appeared that the card was partitioned but your latest post with the output of the lsblk command doesn't. I suspect you formatted specifying the device not the partition i.e mmcblk0 versus mmcblk0p1.

You should be able to mount the card like the following using the filesystem type as currently formatted. Make sure that /mnt/sdcard or whatever directory you create exists.

Quote:
mount -t vfat /dev/mmcblk0 /mnt/sdcard
I have asked your thread to be moved to the MX forum.

Last edited by michaelk; 06-16-2019 at 07:59 PM. Reason: Updated
 
Old 06-17-2019, 06:40 AM   #13
Sam the Man
LQ Newbie
 
Registered: Aug 2018
Posts: 17

Original Poster
Rep: Reputation: Disabled
Over two hours spent for just this one issue and nothing accomplished. Also, I had to reinstall MX Linux for some reason.

Anyway, thanks to all that tried to help me.
 
Old 06-17-2019, 10:46 AM   #14
rokytnji
LQ Veteran
 
Registered: Mar 2008
Location: Waaaaay out West Texas
Distribution: antiX 23, MX 23
Posts: 7,112
Blog Entries: 21

Rep: Reputation: 3474Reputation: 3474Reputation: 3474Reputation: 3474Reputation: 3474Reputation: 3474Reputation: 3474Reputation: 3474Reputation: 3474Reputation: 3474Reputation: 3474
Quote:
Over two hours spent for just this one issue and nothing accomplished. Also, I had to reinstall MX Linux for some reason.
Too bad. My chromebook antix netbook sd slot does not work with

Code:
harry@biker:~
$ uname -r
4.20.12-antix.1-amd64-smp
Took me about 5 minutes to locate my usb to everything adapter to grab what I needed off that card.
 
Old 06-25-2019, 10:35 AM   #15
LinWinux
Member
 
Registered: May 2019
Location: Germany
Distribution: MX Linux & Linux Mint XFCE
Posts: 299

Rep: Reputation: Disabled
I had the same problem very recently with two different SDcards, one formatted as NTFS and the other formatted as Fat32. Could get them recognized in either MX or Mint, don't remember off-hand which since we use both all of the time ... but I wasn't really able to get either of them to actually work properly. After doing some research I read somewhere that most SDcards have their own "preferred" default file system which is why they work by default with other operating systems, but not once they were formatted as such.

I don't know how much of that is true, but I got so frustrated with the SDcards that I decided to never use them again. I was thinking about using a 128GB card for backups and such, but the transfer speeds which I obtained from Win10 for that on 1GB sized files and larger was horrible, much much worse than from a USB 2.0 stick. So I chucked the SDcards and decided to stick to USB sticks instead. It just wasn't worth the hours of hassle that I went through ...
 
  


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 On
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Problems with openSUSE 11.1 recognizing Dazzle* Multi-Card reader and 8G SDHC card chubbs Linux - Newbie 0 02-20-2010 10:49 PM
Recognizing USB card reader when card is inserted hqo201 Fedora 0 08-02-2004 05:08 PM
Red Hat 9 not recognizing my Belkin Wifi card penguinpower77 Linux - Wireless Networking 16 07-19-2004 07:03 PM
Knoppix STD Not recognizing network card....and need help accessing root! TerranML007 Linux - Newbie 3 11-05-2003 07:04 PM
Realtek 8180L based wifi card not recognizing...problems with PCMCIA? massah Linux - Wireless Networking 12 10-23-2003 06:02 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > antiX / MX Linux

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