How to access the micro SD card reader on raspberry PI The Next CEO of Stack OverflowHow to...
Find non-case sensitive string in a mixed list of elements?
Would a completely good Muggle be able to use a wand?
How to count occurrences of text in a file?
Why don't programming languages automatically manage the synchronous/asynchronous problem?
Method for adding error messages to a dictionary given a key
What flight has the highest ratio of time difference to flight time?
Does Germany produce more waste than the US?
How to check if all elements of 1 list are in the *same quantity* and in any order, in the list2?
Why isn't the Mueller report being released completely and unredacted?
Is there always a complete, orthogonal set of unitary matrices?
How do I align (1) and (2)?
Would be okay to drive on this tire?
Why is information "lost" when it got into a black hole?
Why did CATV standarize in 75 ohms and everyone else in 50?
Is there a way to save my career from absolute disaster?
Is micro rebar a better way to reinforce concrete than rebar?
How to invert MapIndexed on a ragged structure? How to construct a tree from rules?
Would a grinding machine be a simple and workable propulsion system for an interplanetary spacecraft?
Why doesn't UK go for the same deal Japan has with EU to resolve Brexit?
What does "Its cash flow is deeply negative" mean?
Is it possible to replace duplicates of a character with one character using tr
How to avoid supervisors with prejudiced views?
Is it possible to use a NPN BJT as switch, from single power source?
Bartok - Syncopation (1): Meaning of notes in between Grand Staff
How to access the micro SD card reader on raspberry PI
The Next CEO of Stack OverflowHow to mount cell phone by USB as SCSI block device?Known USB 2.0 devices don't install driver, but must be manually forcedVerizon USB551L 4G Stick on LinuxWODIM not working with external DVD writer anymoreHow do you format a Micro SD card reader without a SD Card reader?USB Stick is recognized by PC but cannot be openedWhat is the performance penalty of chaining USB hubs?USB HDD Case: can't mount 2nd ext4 partitionUSB Harddrive not working after being bumped during downloadCannot create partition table on my memory card, therefore cant format it using any tool
I am trying to access micro SD card reader plugged in with a 64GB card but unable to access via Raspian.
pi@raspberrypi:/ $ lsusb -t
/: Bus 01.Port 1: Dev 1, Class=root_hub, Driver=dwc_otg/1p, 480M
|__ Port 1: Dev 2, If 0, Class=Hub, Driver=hub/5p, 480M
|__ Port 1: Dev 3, If 0, Class=Vendor Specific Class, Driver=smsc95xx, 480M
|__ Port 3: Dev 6, If 0, Class=Mass Storage, Driver=usb-storage, 480M
|__ Port 4: Dev 4, If 0, Class=Mass Storage, Driver=usb-storage, 480M
There is another USB drive attached to the Raspberry Pi which I am able to access on /dev/sda1
,
Plugging in and out I know that this device is attached at Port 3 and dev 6.
pi@raspberrypi:/ $ lsblk -t
NAME ALIGNMENT MIN-IO OPT-IO PHY-SEC LOG-SEC ROTA SCHED RQ-SIZE RA WSAME
sda 0 512 0 512 512 1 deadline 128 128 0B
`-sda1 0 512 0 512 512 1 deadline 128 128 0B
mmcblk0 0 512 0 512 512 0 deadline 128 128 0B
|-mmcblk0p1 0 512 0 512 512 0 deadline 128 128 0B
`-mmcblk0p2 0 512 0 512 512 0 deadline 128 128 0B
Not sure if the driver needs to be installed for this device before accessing it or I am missing something here?
usb raspberry-pi sd-card card-reader
New contributor
add a comment |
I am trying to access micro SD card reader plugged in with a 64GB card but unable to access via Raspian.
pi@raspberrypi:/ $ lsusb -t
/: Bus 01.Port 1: Dev 1, Class=root_hub, Driver=dwc_otg/1p, 480M
|__ Port 1: Dev 2, If 0, Class=Hub, Driver=hub/5p, 480M
|__ Port 1: Dev 3, If 0, Class=Vendor Specific Class, Driver=smsc95xx, 480M
|__ Port 3: Dev 6, If 0, Class=Mass Storage, Driver=usb-storage, 480M
|__ Port 4: Dev 4, If 0, Class=Mass Storage, Driver=usb-storage, 480M
There is another USB drive attached to the Raspberry Pi which I am able to access on /dev/sda1
,
Plugging in and out I know that this device is attached at Port 3 and dev 6.
pi@raspberrypi:/ $ lsblk -t
NAME ALIGNMENT MIN-IO OPT-IO PHY-SEC LOG-SEC ROTA SCHED RQ-SIZE RA WSAME
sda 0 512 0 512 512 1 deadline 128 128 0B
`-sda1 0 512 0 512 512 1 deadline 128 128 0B
mmcblk0 0 512 0 512 512 0 deadline 128 128 0B
|-mmcblk0p1 0 512 0 512 512 0 deadline 128 128 0B
`-mmcblk0p2 0 512 0 512 512 0 deadline 128 128 0B
Not sure if the driver needs to be installed for this device before accessing it or I am missing something here?
usb raspberry-pi sd-card card-reader
New contributor
Post the output ofls -l /dev/disk/by-path/ | grep usb
– Eugen Rieck
23 hours ago
add a comment |
I am trying to access micro SD card reader plugged in with a 64GB card but unable to access via Raspian.
pi@raspberrypi:/ $ lsusb -t
/: Bus 01.Port 1: Dev 1, Class=root_hub, Driver=dwc_otg/1p, 480M
|__ Port 1: Dev 2, If 0, Class=Hub, Driver=hub/5p, 480M
|__ Port 1: Dev 3, If 0, Class=Vendor Specific Class, Driver=smsc95xx, 480M
|__ Port 3: Dev 6, If 0, Class=Mass Storage, Driver=usb-storage, 480M
|__ Port 4: Dev 4, If 0, Class=Mass Storage, Driver=usb-storage, 480M
There is another USB drive attached to the Raspberry Pi which I am able to access on /dev/sda1
,
Plugging in and out I know that this device is attached at Port 3 and dev 6.
pi@raspberrypi:/ $ lsblk -t
NAME ALIGNMENT MIN-IO OPT-IO PHY-SEC LOG-SEC ROTA SCHED RQ-SIZE RA WSAME
sda 0 512 0 512 512 1 deadline 128 128 0B
`-sda1 0 512 0 512 512 1 deadline 128 128 0B
mmcblk0 0 512 0 512 512 0 deadline 128 128 0B
|-mmcblk0p1 0 512 0 512 512 0 deadline 128 128 0B
`-mmcblk0p2 0 512 0 512 512 0 deadline 128 128 0B
Not sure if the driver needs to be installed for this device before accessing it or I am missing something here?
usb raspberry-pi sd-card card-reader
New contributor
I am trying to access micro SD card reader plugged in with a 64GB card but unable to access via Raspian.
pi@raspberrypi:/ $ lsusb -t
/: Bus 01.Port 1: Dev 1, Class=root_hub, Driver=dwc_otg/1p, 480M
|__ Port 1: Dev 2, If 0, Class=Hub, Driver=hub/5p, 480M
|__ Port 1: Dev 3, If 0, Class=Vendor Specific Class, Driver=smsc95xx, 480M
|__ Port 3: Dev 6, If 0, Class=Mass Storage, Driver=usb-storage, 480M
|__ Port 4: Dev 4, If 0, Class=Mass Storage, Driver=usb-storage, 480M
There is another USB drive attached to the Raspberry Pi which I am able to access on /dev/sda1
,
Plugging in and out I know that this device is attached at Port 3 and dev 6.
pi@raspberrypi:/ $ lsblk -t
NAME ALIGNMENT MIN-IO OPT-IO PHY-SEC LOG-SEC ROTA SCHED RQ-SIZE RA WSAME
sda 0 512 0 512 512 1 deadline 128 128 0B
`-sda1 0 512 0 512 512 1 deadline 128 128 0B
mmcblk0 0 512 0 512 512 0 deadline 128 128 0B
|-mmcblk0p1 0 512 0 512 512 0 deadline 128 128 0B
`-mmcblk0p2 0 512 0 512 512 0 deadline 128 128 0B
Not sure if the driver needs to be installed for this device before accessing it or I am missing something here?
usb raspberry-pi sd-card card-reader
usb raspberry-pi sd-card card-reader
New contributor
New contributor
edited 4 mins ago
JakeGould
32.2k1098141
32.2k1098141
New contributor
asked 23 hours ago
gauravguptagauravgupta
62
62
New contributor
New contributor
Post the output ofls -l /dev/disk/by-path/ | grep usb
– Eugen Rieck
23 hours ago
add a comment |
Post the output ofls -l /dev/disk/by-path/ | grep usb
– Eugen Rieck
23 hours ago
Post the output of
ls -l /dev/disk/by-path/ | grep usb
– Eugen Rieck
23 hours ago
Post the output of
ls -l /dev/disk/by-path/ | grep usb
– Eugen Rieck
23 hours ago
add a comment |
1 Answer
1
active
oldest
votes
Raspberry Pi has a dedicated SD controller which has nothing to do with USB. Probably that's why you can't get to it over the USB stack.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
gauravgupta is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1419257%2fhow-to-access-the-micro-sd-card-reader-on-raspberry-pi%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Raspberry Pi has a dedicated SD controller which has nothing to do with USB. Probably that's why you can't get to it over the USB stack.
add a comment |
Raspberry Pi has a dedicated SD controller which has nothing to do with USB. Probably that's why you can't get to it over the USB stack.
add a comment |
Raspberry Pi has a dedicated SD controller which has nothing to do with USB. Probably that's why you can't get to it over the USB stack.
Raspberry Pi has a dedicated SD controller which has nothing to do with USB. Probably that's why you can't get to it over the USB stack.
edited 3 mins ago
JakeGould
32.2k1098141
32.2k1098141
answered 12 mins ago
Ale..chenskiAle..chenski
8,87341732
8,87341732
add a comment |
add a comment |
gauravgupta is a new contributor. Be nice, and check out our Code of Conduct.
gauravgupta is a new contributor. Be nice, and check out our Code of Conduct.
gauravgupta is a new contributor. Be nice, and check out our Code of Conduct.
gauravgupta is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1419257%2fhow-to-access-the-micro-sd-card-reader-on-raspberry-pi%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Post the output of
ls -l /dev/disk/by-path/ | grep usb
– Eugen Rieck
23 hours ago