this post was submitted on 05 Dec 2023
35 points (100.0% liked)

linuxmemes

26512 readers
863 users here now

Hint: :q!


Sister communities:


Community rules (click to expand)

1. Follow the site-wide rules

2. Be civil
  • Understand the difference between a joke and an insult.
  • Do not harrass or attack users for any reason. This includes using blanket terms, like "every user of thing".
  • Don't get baited into back-and-forth insults. We are not animals.
  • Leave remarks of "peasantry" to the PCMR community. If you dislike an OS/service/application, attack the thing you dislike, not the individuals who use it. Some people may not have a choice.
  • Bigotry will not be tolerated.
  • 3. Post Linux-related content
  • Including Unix and BSD.
  • Non-Linux content is acceptable as long as it makes a reference to Linux. For example, the poorly made mockery of sudo in Windows.
  • No porn, no politics, no trolling or ragebaiting.
  • 4. No recent reposts
  • Everybody uses Arch btw, can't quit Vim, <loves/tolerates/hates> systemd, and wants to interject for a moment. You can stop now.
  • 5. πŸ‡¬πŸ‡§ Language/язык/Sprache
  • This is primarily an English-speaking community. πŸ‡¬πŸ‡§πŸ‡¦πŸ‡ΊπŸ‡ΊπŸ‡Έ
  • Comments written in other languages are allowed.
  • The substance of a post should be comprehensible for people who only speak English.
  • Titles and post bodies written in other languages will be allowed, but only as long as the above rule is observed.
  • 6. (NEW!) Regarding public figuresWe all have our opinions, and certain public figures can be divisive. Keep in mind that this is a community for memes and light-hearted fun, not for airing grievances or leveling accusations.
  • Keep discussions polite and free of disparagement.
  • We are never in possession of all of the facts. Defamatory comments will not be tolerated.
  • Discussions that get too heated will be locked and offending comments removed.
  • Β 

    Please report posts and comments that break these rules!


    Important: never execute code or follow advice that you don't understand or can't verify, especially here. The word of the day is credibility. This is a meme community -- even the most helpful comments might just be shitposts that can damage your system. Be aware, be smart, don't remove France.

    founded 2 years ago
    MODERATORS
     

    shamelessly stolen from nixCraft on mastodon

    all 21 comments
    sorted by: hot top controversial new old
    [–] Dasnap@lemmy.world 9 points 2 years ago

    Your USB is probably named '/' or '~' so give that a go.

    [–] backhdlp@lemmy.blahaj.zone 2 points 2 years ago (2 children)

    Another advantage of having a NVMe SSD, hard to confuse /dev/nvme0n1p2 with /dev/sda1

    [–] Holzkohlen@feddit.de 1 points 2 years ago

    I just make use of my paranoia, so I triple and quadruple check. Then get a coffee and quadruple check again. Never messed up once

    [–] bzLem0n@lemmy.ca 0 points 2 years ago (1 children)

    It's even easier to prevent confusion if you use /dev/disk/by-id/ id's, it only took a few times of overwriting the wrong disk to figure that out.

    [–] Goodtoknow@lemmy.ca 0 points 2 years ago (2 children)

    How can I figure out which direct device is associated with a specific id?

    [–] Nithanim@programming.dev 1 points 2 years ago

    Not sure if it is equal on all distros but on every one I have used it's a readable string of muliple components. One of them is "usb" for a usb mass storage, so if it is the only one you have connected to your computer it is very obvious. For like sata disks it has the manufacturer and serial on it so you can match what drive it is you want to write to. Also, the name is pretty unique (on your sysytem at least, globally I don't know), so even if you swap hardware around, you cannot write to the wrong storage if you got the right name. Like "sdb" can be reassigned, but the id is an id.

    [–] problembasedperson@lemmy.dbzer0.com 1 points 2 years ago* (last edited 2 years ago)

    Λ‹blkidΛ‹ or take a look around /dev, devices are symlinked to their various attributes.

    [–] iopq@lemmy.world 2 points 2 years ago (1 children)

    You used something called disk destroyer, and you just found out why

    [–] kbotc@lemmy.world 0 points 2 years ago (1 children)

    Disk Duplicator is a destroyer? Man, I used to image so many drives with DD back in my helpdesk days…

    [–] AffineConnection@lemmy.world 1 points 2 years ago* (last edited 2 years ago)

    dd does not stand for "disk duplicator". That's a modern backronymization that doesn't reflect the original general usage of the command which is to "convert and copy". Efficiently (with respect to I/O) copying raw data is only one of its intended purposes; it also converts text encodings.

    [–] impolitecarry@lemmy.wtf 1 points 2 years ago (1 children)

    When you hit enter on the DD command, and your main storage light suddenly starts flashing.

    [–] FooBarrington@lemmy.world 1 points 2 years ago (1 children)

    When you hit enter on the DD command, and your eyes suddenly start flashing.

    [–] 567PrimeMover@kbin.social 2 points 2 years ago

    Little Jimmy wanted to try Fedora, But little Jimmy is no more. For what he thought was his external drive, was actually his cerebral core

    [–] MonkderZweite@feddit.ch 1 points 2 years ago (1 children)
    [–] azertyfun@sh.itjust.works 1 points 2 years ago* (last edited 2 years ago)

    Except the proposed alternative should not be cp or pv, but dd bs=4M oflag=direct,sync status=progress.

    I feel like I'm taking crazy pills with all the advice in this thread, because for USB keys you will otherwise end up instantly filling the write cache... which will block the apparent progress of the copy operation (so why even use pv since all you're doing is measuring your RAM speed and available cache size) as well as heavily slow down (even potentially partially freeze in some circumstances) the rest of your system as the kernel is running out of free pages and can't flush caches fast enough due to the slow-ass write speeds of usb keys.

    * (Alternatively there is a kernel setting somewhere to disable caching globally for a block device... but in most cases caching is good, just not when you're flashing an ISO).

    [–] foyrkopp@lemmy.world 1 points 2 years ago

    Anyone who hits enter on a dd command without triple-checking it gets exactly what they deserve.

    [–] speaker_hat@lemmy.one 0 points 2 years ago

    That's why it called dd: don't dare

    [–] backhdlp@lemmy.blahaj.zone 0 points 2 years ago (1 children)

    Fun fact: you can use cat image.iso > /dev/device and it (should) just works.

    [–] mumblerfish@lemmy.world 1 points 2 years ago

    Yay, more ways to (accidentally) destroy my data!