linux

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

01011, in What are people daily driving these days?

Void

lurch, in Request for help, I broke some graphics

I’m not familiar with your package manager, but some have logs detailing what exactly they did in chronological order.

chaogomu, in What are people daily driving these days?

I recently switched my laptop to Garuda, it's an Arch based gaming distro. It seems to mostly work right out of the box, but I did have to tweak a few steam games to force them to use my dedicated graphics.

I guess I could go in and force steam itself to use the graphics card via env... But I only have a handful of large games at the moment. It's just as easy to set the requirement per game right now.

Carunga,

I usw Garuda with KDE and like it lot, even though I do not game.

rebul, in What are people daily driving these days?

OS/2

Cyberflunk,

Fun fact, it took os2 5 years to implement a tcpip stack. It was like 1993 before it could do internet things

homesweethomeMrL,

To be fair, Winsock was a kludgy mess for the better part of a decade itself.

homesweethomeMrL,

Dude.

Carter, in What are people daily driving these days?

OpenSUSE TW for me. Used to be Arch but it’s just too much faff for me.

ProtonBadger,

Same, I've used Linux since the late nineties and know my way around but I have other things to do. TW with Plasma/Wayland is great.

namingthingsiseasy, in Broke a partition. Is there any way of saving it?

First thing is to not mount it at all. Any writes to the overwritten partition will corrupt your data.

Second thing: install system rescue cd to a live usb and boot it. Look into testdisk and photorec. It’s been a while since I’ve had to use these tools, but I believe testdisk can restore the partition and photorec can find files in a file system that has been deleted. I would try running photorec first to save the recovered files to an external hard disk, and then testdisk to try restoring them. But disclaimer: it’s been a while since I’ve had to do this, so my memory is foggy here.

Good luck!

furzegulo, in What are people daily driving these days?

cachyos

oh_gosh_its_osh, in What are people daily driving these days?
@oh_gosh_its_osh@lemmy.ml avatar

Fedora Silverblue. But when switching I had to wrap my head around the differences in the workflow of doing things. Once youre past that it’s rock solid and had no issues so far.

KISSmyOS,

when switching I had to wrap my head around the differences in the workflow of doing things. Once youre past that it’s rock solid and had no issues so far.

This is the case with every distro nowadays.

OddFed, in What are people daily driving these days?
@OddFed@feddit.de avatar

I installed Linux and the feeling of freedom and privacy hit me so hard that I immediately began committing crimes, knowing that the FBI could never track me. Piracy, sexual assault, trademark infringement, petty larceny, tax fraud, you name it. I also own several fully automatic firearms even though I live in the state of California, but it doesn’t matter. Ever since I removed Windows 10 from my computer and replaced it with Arch Linux, and began using a PinePhone as my daily driver phone, police can’t even stop me in traffic. Windows may have a lot of video games, but the benefits of Linux should not be understated.

astraeus,
@astraeus@programming.dev avatar

Username tells me this is a trap

KISSmyOS,

The worst crime here is using Arch.

linucs, in PipeWire 1.0 Released For Managing Audio/Video Steams On The Linux Desktop

Pipewire is a true blessing for Linux

foiledAgain, in What are people daily driving these days?

Fedora but I’m not loving it. Due to my hardware I think I’m limited to that, arch and openSuse.

xohshoo,

? If you’re hardware runs Fedora, it should run anything

ultra, in What Tweak, Program, ... changes a Desktop Environment from unusable to great for you?

Have you found a window manager that works like Material Shell yet? I’d also be interested in switching to one

lurch, (edited ) in Broke a partition. Is there any way of saving it?

before you change anything it would be good to use dd and save the whole drive to a bigger drive or maybe compress it with gzip while using dd to save it to a slightly smaller one. That takes a very long time, but gives you the ability to start over with your recovery. Only do that if it’s worth to wait several hours.

photorec can also recover some files by looking at the raw data still there, if all else fails.

sun_is_ra,

use dd and save the whole drive to a bigger drive or maybe compress it with gzip while using dd to save it to a slightly smaller one

command would be something like this:

dd if=/dev/…/myparition|gzip status=progress > /mnt/external_hd/mypartition.gzip

aodhsishaj, (edited )

Wouldn’t you want to use

dd if=/dev/sda3 of=/dev/sdc1 status=progress && sync

Where /dev/sda3 is the damaged partition and /dev/sdc1 is the freshly formatted external drive

You’ll find your attached devices with lsblk

You’re going to want to make sure /dev/sda3(broken partition) is unmounted so as not to write any more data to it.

CMahaff, (edited )

To add on to this answer (which is correct):

Your “of” can also just be a regular file if that’s easier to work with vs needing to create a new partition for the copy.

I’ll also say you might want to use the block size parameter “bs=” on “dd” to speed things up, especially if you are using fast storage. Using “dd” with “bs=1G” will speed things up tremendously if you have at least >1GB of RAM.

aodhsishaj,

I totally spaced on BS=4M which I believe is the standard block size for ext4

sun_is_ra,

this clones one parition to another which is fine if you have free partition with enough space lying around. My code was for taking compressed backup of the partition to be restored later if needed. Its less convenient but doesnt require as much space nor does it require an entire partition

aodhsishaj,

Don’t you have to read the partition to compress it, which is fine on a healthy partition but can further damage a broken one?

sun_is_ra,

depends on what you mean by “broken”. If broken means has bad sector or other hardware issue, then yes OP should transfer data to healthy partition and work from there. though it certainly won’t hurt if he attempted to recover data from broken partition (worst the HD dies and OP restore the backup on healthy HD) However he said “i broke my partition” which make me think its software issue, not hardware. in which case, would be faster to recover data directly after taking backup

vzq, (edited )

That’s what people always underestimate about data recovery jobs: you need lots of space. One copy for safekeeping. One to work on. One disk of the same size you store recovered files on.

Whenever friends or family ask me to look at a disk I always tell them to give me the disk and two new ones of the same or greater capacity and I’ll give it a shot. Usually they discover the data isn’t that important after all. If it is I have all I need.

pinchcramp, (edited ) in PipeWire 1.0 Released For Managing Audio/Video Steams On The Linux Desktop
@pinchcramp@lemmy.dbzer0.com avatar

Official Release Page for those who don’t want to read the Phoronix article: gitlab.freedesktop.org/pipewire/pipewire/…/1.0.0

It’s great to see that Pipewire has reached this milestone. Personally I’ve been using it since 0.3.35 for very basic audio needs and it’s been a very smooth transition. After installation I never had to tinker with it anymore. “It just works”^TM^

Deckweiss,

I had to do some tinkering way back to make my bluetooth earplugs be recognized as an audio device.

Not sure if that is still needed today

onion,

No

Deregon, in What are people daily driving these days?
@Deregon@jlai.lu avatar

NixOS user here! Fedora is a very good contender as well

musicmatze,
@musicmatze@lemmy.ml avatar

+1 on NixOS. On all devices except Android phones since 2014 for me.

BastingChemina,

NixOS too. I really like having a “fresh” install every time I restart.

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