lsblk lists a device, then says “not a device” The Next CEO of Stack Overflowrgmanager [fs] start_filesystem: Could not match “f6a58cf7-b39b-489c-add5-444ceab8af9d” with a real deviceInstalling a bootloader on a macWhat might cause a block device to somehow be smaller than its partitions?Mapping of usb device changes afer rtcwakeuplsblk doesn't show anything about root file systemMake lsblk list devices by-idUSB attached SATA - partitions table not being read at bootBroken links in /dev/disk/by-pathlsblk - what are the possible values for the column “state”Extend /dev/sdb3 partition
Rotate a column
What is meant by a M next to a roman numeral?
When airplanes disconnect from a tanker during air to air refueling, why do they bank so sharply to the right?
Why didn't Khan get resurrected in the Genesis Explosion?
I believe this to be a fraud - hired, then asked to cash check and send cash as Bitcoin
If the heap is initialized for security, then why is the stack uninitialized?
Is a stroke of luck acceptable after a series of unfavorable events?
Where to find order of arguments for default functions
Why were Madagascar and New Zealand discovered so late?
How do scammers retract money, while you can’t?
Is it okay to store user locations?
Can a caster that cast Polymorph on themselves stop concentrating at any point even if their Int is low?
Is it safe to use c_str() on a temporary string?
Putting a 2D region plot under a 3D plot
What do "high sea" and "carry" mean in this sentence?
How can I quit an app using Terminal?
Anatomically Correct Strange Women In Ponds Distributing Swords
Horror movie/show or scene where a horse creature opens its mouth really wide and devours a man in a stables
How do I construct this japanese bowl?
Why do professional authors make "consistency" mistakes? And how to avoid them?
How can I open an app using Terminal?
How to count occurrences of text in a file?
Natural language into sentence logic
Term for the "extreme-extension" version of a straw man fallacy?
lsblk lists a device, then says “not a device”
The Next CEO of Stack Overflowrgmanager [fs] start_filesystem: Could not match “f6a58cf7-b39b-489c-add5-444ceab8af9d” with a real deviceInstalling a bootloader on a macWhat might cause a block device to somehow be smaller than its partitions?Mapping of usb device changes afer rtcwakeuplsblk doesn't show anything about root file systemMake lsblk list devices by-idUSB attached SATA - partitions table not being read at bootBroken links in /dev/disk/by-pathlsblk - what are the possible values for the column “state”Extend /dev/sdb3 partition
I'm seeing somewhat odd behaviour:
% lsblk | grep sdb
sdb 8:16 1 114.6G 0 disk
└─sdb1 8:17 1 114.6G 0 part /run/media/ravi/CC49-1FC8
% lsblk /dev/sdb
lsblk: /dev/sdb: not a block device
The device is a newly ordered Sandisk dual USB-C 128GB that I'm running f3write
on to check if it is a fake or not.
Why would lsblk
contradict itself like this?
Are there different measures as to what is a block device?
linux block-device lsblk
add a comment |
I'm seeing somewhat odd behaviour:
% lsblk | grep sdb
sdb 8:16 1 114.6G 0 disk
└─sdb1 8:17 1 114.6G 0 part /run/media/ravi/CC49-1FC8
% lsblk /dev/sdb
lsblk: /dev/sdb: not a block device
The device is a newly ordered Sandisk dual USB-C 128GB that I'm running f3write
on to check if it is a fake or not.
Why would lsblk
contradict itself like this?
Are there different measures as to what is a block device?
linux block-device lsblk
add a comment |
I'm seeing somewhat odd behaviour:
% lsblk | grep sdb
sdb 8:16 1 114.6G 0 disk
└─sdb1 8:17 1 114.6G 0 part /run/media/ravi/CC49-1FC8
% lsblk /dev/sdb
lsblk: /dev/sdb: not a block device
The device is a newly ordered Sandisk dual USB-C 128GB that I'm running f3write
on to check if it is a fake or not.
Why would lsblk
contradict itself like this?
Are there different measures as to what is a block device?
linux block-device lsblk
I'm seeing somewhat odd behaviour:
% lsblk | grep sdb
sdb 8:16 1 114.6G 0 disk
└─sdb1 8:17 1 114.6G 0 part /run/media/ravi/CC49-1FC8
% lsblk /dev/sdb
lsblk: /dev/sdb: not a block device
The device is a newly ordered Sandisk dual USB-C 128GB that I'm running f3write
on to check if it is a fake or not.
Why would lsblk
contradict itself like this?
Are there different measures as to what is a block device?
linux block-device lsblk
linux block-device lsblk
asked yesterday
Tom HaleTom Hale
7,420342103
7,420342103
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
lsblk
on its own will scan for devices in sysfs
. Many linux distributions have a hotplug handler (udev
) that automagically makes corresponding nodes in /dev
when block devices appear, and removes them when the devices disappear.
Either your system doesn't have such hotplug handler, or more likely there is one, but it fails to handle the hotplugging event, so you have ended up without the corresponding /dev
node. For the latter, perhaps the system log file(s) have some indication about that failure.
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "106"
;
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: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
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
);
);
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%2funix.stackexchange.com%2fquestions%2f508901%2flsblk-lists-a-device-then-says-not-a-device%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
lsblk
on its own will scan for devices in sysfs
. Many linux distributions have a hotplug handler (udev
) that automagically makes corresponding nodes in /dev
when block devices appear, and removes them when the devices disappear.
Either your system doesn't have such hotplug handler, or more likely there is one, but it fails to handle the hotplugging event, so you have ended up without the corresponding /dev
node. For the latter, perhaps the system log file(s) have some indication about that failure.
add a comment |
lsblk
on its own will scan for devices in sysfs
. Many linux distributions have a hotplug handler (udev
) that automagically makes corresponding nodes in /dev
when block devices appear, and removes them when the devices disappear.
Either your system doesn't have such hotplug handler, or more likely there is one, but it fails to handle the hotplugging event, so you have ended up without the corresponding /dev
node. For the latter, perhaps the system log file(s) have some indication about that failure.
add a comment |
lsblk
on its own will scan for devices in sysfs
. Many linux distributions have a hotplug handler (udev
) that automagically makes corresponding nodes in /dev
when block devices appear, and removes them when the devices disappear.
Either your system doesn't have such hotplug handler, or more likely there is one, but it fails to handle the hotplugging event, so you have ended up without the corresponding /dev
node. For the latter, perhaps the system log file(s) have some indication about that failure.
lsblk
on its own will scan for devices in sysfs
. Many linux distributions have a hotplug handler (udev
) that automagically makes corresponding nodes in /dev
when block devices appear, and removes them when the devices disappear.
Either your system doesn't have such hotplug handler, or more likely there is one, but it fails to handle the hotplugging event, so you have ended up without the corresponding /dev
node. For the latter, perhaps the system log file(s) have some indication about that failure.
answered yesterday
Ralph RönnquistRalph Rönnquist
2,69759
2,69759
add a comment |
add a comment |
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- 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%2funix.stackexchange.com%2fquestions%2f508901%2flsblk-lists-a-device-then-says-not-a-device%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