linuxmemes

This magazine is from a federated server and may be incomplete. Browse more on the original instance.

gareppa, in usb formatting
@gareppa@programming.dev avatar

It’s called Disk Destroyer for a reason

LastYearsPumpkin,

That’s my nickname too.

15liam20,

No, he said ‘disk’.

einlander,

Same thing, we know it’s a little floppy 💾

SailorMoss,

Why is the save button floppy, I don’t understand!?!?

Kialdadial,

In case you are being serious, the save icon is a picture of a “floppy disk” a removable media that was extremely prevalent in the 80s-90s these devices could store get this 1.44 MB of data. IIRC Windows 95 came out on 13 of these puppies that you had to put in one after the other to actually install windows. This was also a similar situation for games.

AffineConnection,

You might as well call cp the same thing


<span style="color:#323232;">cp source "`realpath destination`"
</span>
Holzkohlen,

Disk Destroy December. Get to it folks!

samokosik, in installing windows in a nutshell
@samokosik@lemmynsfw.com avatar

Yet I bet they will still collect many, many gigabytes

sadreality,

Correct, those settings are cosmetic

thisbenzingring, in I think they just hate us Linux Gamers

I’ve played before anticheat was a thing and it is meaningless. Cheaters are going to cheat. The best anticheat systems are voting. The game kicks a winning vote total and then that server sends the rest of the servers it’s results. Then that account is flagged as a cheater. The only way a cheater can exist is they hide and don’t cheat and are obvious in it

DrRatso,

Votekick really doesn’t work as an anticheat, especially without good playback analysis option and even then good gamesense looks like wallhacking in shooters to new players for example when all you are doing is tracking sound and have good crosshair placement. If you can’t review replay and there is no blatant cheating like speedhack or spinbot or teleporting, what are you voting on? The fact that you are getting stomped?

To be clear I’m not saying invasive anti-cheat is the way, but IMO voting is not the way to go.

Marxine, in It took a lot of work, but I've created the definitive Linux distro flowchart
@Marxine@lemmy.ml avatar

I’d rather someone’s first choice about Linux was which DE to use. This plays a way bigger part in first impressions.

The obvious choice is KDE, ofc

style99,
@style99@kbin.social avatar

That's a strange way to spell Xfce.

livie,

DEs are clearly bloat, so the best DE is no DE.

Definitely not just because I prefer i3

DosDude, in I heard it's starting to get better
@DosDude@retrolemmy.com avatar

With proton, this is less and less the case.

intelati,

Basically, I tried proton and I’ll never go back.

The overhead of windows is so heavy

heehaw,

what is proton? what does it do?

moody,

Proton is a translation layer that uses Wine and other tricks to allow you to run Windows games on Linux. It’s a Valve project that is making a ton of progress on compatibility. It’s a huge part of the success of the Steam Deck.

AbsolutelyNotCats,
@AbsolutelyNotCats@lemdro.id avatar

Indeed, God bless proton

FQQD, in I found it! The manual! I'm not sure it's helping me though...

Metal Garden sounds like a 2000s metal news website

kuneho,
@kuneho@lemmy.world avatar

Metal Garden Arch - strangely works as a distro name as well I think

yournamehere,

i think it is the wrong one. it should say mental garden arch linux manual.

jaybone,

Sounds like a 90s grunge band.

Or rather a really shitty ripoff of one.

Norgur, in I found it! The manual! I'm not sure it's helping me though...

Idk what the issue is:

  1. Unpack
  2. Install
  3. ?
  4. It just works
TheInsane42,
@TheInsane42@lemmy.world avatar
  1. Magic happens
jaybone,

This used to involve profit.

MTK, in Just a PSA

I just shoot myself whenever I want to leave vim

iAvicenna,
@iAvicenna@lemmy.world avatar

You don’t need to be so drastic just shut down the electricity by the main switch

vrighter,

you can just unplug your pc: and that way you won’t incur downtime for the rest of the house.

GoosLife,

I rent a place where I don’t have direct access to the main switch, so what I do is I just stop paying utilities until Vim closes :)

EuroNutellaMan,
@EuroNutellaMan@lemmy.world avatar

Or just shoot the main switch if you at least have a line of sight on it

pineapplelover,

You haven’t shot yourself yet though so you’re still in vim

MTK,

You don’t know!

lseif, (edited ) in Alpine Linux is just Busybox in a Linux Distro trenchcoat

I’d just like to interject for a moment. What you’re refering to as Linux, is in fact, BusyBox/Linux, or as I’ve recently taken to calling it, BusyBox plus Linux. Linux is not an operating system unto itself, but rather another free component of a fully functioning BusyBox system made useful by the BusyBox corelibs, shell utilities and vital system components comprising a full OS as defined by POSIX…

Read more

clearleaf,

I know this is a joke but people calling it busybox/linux is how I came to understand what makes linux a separate thing from gnu.

MonkderZweite, in usb formatting

Obligatory useless use of dd comment.

AffineConnection, (edited )

It was less useless for that purpose when cp and cat were less I/O efficient compared to dd with the appropriate block size, which isn’t as much the case now as it used to be.

stjobe,

That was an interesting read, thank you!

Molten_Moron,

I haven’t touched dd since I read that about a year ago, super interesting!

For people that use dd because they like the progress bar, I highly recommend pv.

azertyfun, (edited )

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).
MonkderZweite, (edited )

so why even use pv since all you’re doing is measuring your RAM speed and available cache size

This is probably why pv progress fills in a second but is only done after a few minutes. Nonetheless, shell redirect, cat, cp work fine and handle blocksize and cache dynamically.

Your worst case scenario never happened to me after years of using pv/cp for flashing sticks/overwriting/copying partitions, even with some …risky mount settings. Honestly doesn’t make much sense to me either. Again, dd isn’t some sort of magical safe handle to make the process progress smoothly. Like i use to say, dd is a skalpell, not a shovel.

azertyfun,

I mean yeah, the bits end up where they should. It’s just that the speed/progress indication is near useless with pv since at the end of the copy you still need to wait for the entire write buffer to be flushed (2 GiB in my experience, which can take several minutes).

So IMO dd with at least oflag=osync,odirect is safer than cp and pv with which a newbie might forget to run sync and unplug the usb key immediately, so they’ll be missing a lot of data.

Maybe some people use dd for the wrong reason, it’s their problem, but the solution is to use dd bs=4M oflag=osync,odirect, not to use cp.

MacNCheezus, in Just a PSA
@MacNCheezus@lemmy.today avatar

“I use Arch Linux btw”

*doesn’t know how to use vim

Pottery

ILikeBoobies,

Hey!

pewgar_seemsimandroid, in You should

i wanna test what happens but im Scared to do it on a vm

Oha,

ill just crash your pc after a while

lemmesay,
@lemmesay@discuss.tchncs.de avatar
Zardoz, in Just a PSA

I prefer ctrl-[ instead of escape

vrighter,

That’s the first one i’ve learned to use and I have a hard time actually using the escape key. it’s just so out of the way

Shareni,

it’s just so out of the way

That’s why you rebind caps to:

  • hold = ctrl
  • tap = ESC

Kmonad is my favourite tool for this, but there are other options.

Bonus: rebind hold ret to ctrl and you can C-[ with one hand, and it makes navigation a lot easier if you can’t palm ctrl

kbotc, in Just a PSA

META-C :wq!

ESC is all the way over there and my hand is already on the space bar.

evranch,

Especially as a Dvorak user CTRL-C is effortless. Reaching for ESC makes zero sense!

PoolloverNathan,

ALT-: wq!

Saved you a keypress

XTornado,

Not if you swapped the caps lock with ESC.

Evil_Shrubbery, in I found it! The manual! I'm not sure it's helping me though...

There sure is a lot of screwing involved in Arch …

abraxas,

From my memories of the Arch linux labs in college, no there isn’t…

  • All
  • Subscribed
  • Moderated
  • Favorites
  • linuxmemes@lemmy.world
  • localhost
  • All magazines
  • Loading…
    Loading the web debug toolbar…
    Attempt #