Kongar

joined 2 years ago
[–] [email protected] 3 points 1 day ago

I will try it! Never heard of it. I also hate the markdown nonsense.

[–] [email protected] 14 points 5 days ago (1 children)

It’s super easy on the steam deck. You don’t need to know Linux. You boot into desktop mode, open Firefox, install emudeck by clicking on a link. Then you configure in there a bit and download roms - all pretty straightforward and easy. A noob can do it in a couple of hours.

Now that said - the steam deck is hit or miss emulating switch games. Most games work awesome. But not every game. It’s not clear to me if the hardware is a little too slow for emulation overhead, or if it’s more an issue between the emulator and the game. My take is it’s a bit of both.

Someone else will have to comment on modding the switch as I haven’t done that, but I bet once modded, it plays every game 100% fine.

Assuming my prior paragraph is true: if the ONLY thing you want to do is switch games - then I’d skip the steam deck. If you want to do OTHER things as well (snes, nes, all other older consoles, actual pc games that play on steam deck) then ya, steam deck all the way. Make sense?

[–] [email protected] 79 points 2 weeks ago (1 children)

Their insistence on sueing the world of emulation ensures I’ll never buy another Nintendo console ever again. (And I’ve bought all of them so far). Their actions cause the opposite effect of what they want - they are creating pirates.

[–] [email protected] 45 points 3 weeks ago (3 children)

Not saying you’re wrong - you’re probably right. But as an engineer, I’ve referred to or been asked about “the center of mass” thousands of times and not once have I ever heard “virtual” used. It’s just always the center of mass - wherever that point exists in all of spacetime.

It’s weird. Did something change over the years (like using the Oxford comma or double spacing after a period?). Or is that something that’s always been a thing that I’ve never run across? Strange ;)

[–] [email protected] 21 points 3 weeks ago (3 children)

It’s much better these days - at least it works fine on arch and fedora. I wouldn’t worry about nvidia on Linux. That said, I’d go AMD for another reason - $. There’s just no reason to spend the kind of money nvidia wants when you can get something just a tad slower for 1/4 the price. AMD makes cards that can drive a huge monitor at high fps.

Bottom line: whatever is fine.

[–] [email protected] 7 points 1 month ago (1 children)

And the sunk costs aren’t even a thing tbh. You can just go pirate your books with zero moral dilemmas since you actually paid for it and they took it away.

[–] [email protected] 1 points 1 month ago

No, but it’s a set it and forget it thing. I pay zero attention to it and it just runs. Easy means it runs more if I had to check what to mine and switch and blah blah, well I’m lazy…. So for me - ya it’s better. ;)

[–] [email protected] 9 points 1 month ago* (last edited 1 month ago) (2 children)

I went to 11 and have gone back to 10. The only thing it does is mine crypto coins (I need a heater in that room anyway - whatever). Everything else works better in Linux.

11 was fine until they repeatedly kept breaking their updates. Next time I have to reload that os on that drive it’ll be hiveos. It won’t be as convenient as the auto switchers like nicehash and their alternatives. But ya, windows sux these days.

[–] [email protected] 7 points 1 month ago (1 children)

I’ll wait until it’s heavily on sale and that it’s proven itself to actually play on Linux. Just like I did for Elden ring. Otherwise I’d pay them full price on day one.

[–] [email protected] 9 points 1 month ago (3 children)

This WAS a day one buy for me. Now I’ll pass thanks.

[–] [email protected] 10 points 1 month ago

My wife is not good with computers. I moved her over to Linux with vanilla gnome. It took one 1/2 hr session and she was off and running. The next day I got a bunch of questions - another half hour. About a week later she said “this is SO much better than windows - I love it!”

Linux is easy to use. Installing and maintaining-no. But using - yes.

[–] [email protected] 8 points 1 month ago (1 children)

Leopards eat your face much Midwest?

 

I just installed EndeavorOS on an HP Spectre360 that’s roughly 2 years old. I am honestly surprised at how easy it went. If you google it, you’ll get a lot of “lol good luck installing linux on that” type posts - so I was ready for a battle.

Turned off secure boot and tpm. Booted off a usb stick. Live environment, check. Start installer and wipe drive. Few minutes later I’m in. Ok let’s find out what’s not working…

WiFi check. Bluetooth check. Sound check (although a little quiet). Keyboard check. Screen resolution check. Hibernates correctly? Check. WTF I can’t believe this all works out the box. The touchscreen? Check. The stylus pen check. Flipping the screen over to a tablet check. Jesus H.

Ok, everything just works. Huh. Who’d have thunk?

Install programs, log into accounts, jeez this laptop is snappier than on windows. Make things pretty for my wife and install some fun games and stuff.

Finished. Ez. Why did I wait so long? Google was wrong - it was cake.

 

Hello. Please critique how I'm updating / maintaining my new Arch installation so I can fix anything I'm doing wrong. This is mostly what I could gather from the Arch wiki tailored to my system. I think I know what I'm doing - but as I've often learned, it's easy to misunderstand or overlook some things.

Step 1: perform an incremental full system backup so I have something to restore if the update borks anything. I've chosen to use the rsync command as laid out on the wiki:

sudo rsync -aAXHv --delete --exclude={"/dev/*","/proc/*","/sys/*","/tmp/*","/run/*","/mnt/*","/media/*","/lost+found"} / /media/linuxhdd/archrsyncbackup

I have a large hdd mounted as a secondary drive under /media/linuxhdd. It is configured to automatically mount from fstab using uuid. Both my root drive and that hdd are formatted ext4. I'm not using the -S option because I don't think I'll be using virtual machines (I have other hard drives I can make bootable). --delete is used so I maintain one current set of files for restore purposes. This keeps the copying and transfer time to a minimum. (I maintain disk images offline with a different tool - this is simply one local copy for easy restoration purposes)

Step 2: Check the Arch wiki - follow instructions for any manual steps

Step 3: once every 1-2 months, update the mirror list using reflector

sudo reflector --protocol https --verbose --latest 25 --sort rate --save /etc/pacman.d/mirrorlist

This should sort the fastest 25 mirrors into mirrorlist. Remember to use the -Syyu option in step 6 if this step was done

Step 4: Clean the journal

sudo journalctl --vacuum-time=4weeks

This should keep 4 weeks of files.

Step 5: Clean the cache

sudo paccache -r

This should keep no more than 3 versions laying around. Once and a while, I can clean out all uninstalled packages with -ruk0 options instead.

Step 6: Upgrade Arch packages with pacman

sudo pacman -Syu

I need to watch for pacnew and pacsave files and deal with them (although I haven't seen any yet)

Step 7: Review the pacman log

nano /var/log/pacman.log

This should tell me about any warnings, errors, instructions, or other things I need to deal with.

Step 8: Remove Orphans

pacman -Qtdq | sudo pacman -Rns -

This could be recursive and needs to be run more than once. Instead, I'll just run it once every time I update. This should keep things cleaned out.

Step 9: Update AUR packages

Check the build scripts to make sure the package hasn't been taken over and that it won't run anything funny.

yay -Sua

This should update just the AUR packages

Step 10: Remove AUR orphans

yay -Yc

The wiki says this "removes unnecessary dependencies" which I believe means AUR-only orphan packages.

Step 11: Reboot

reboot

Step 12: Update flatpaks from the GUI (Gnome-->Software-->Updates)

Any mistakes? Suggestions?

Thanks!

 

First post here from a new Lemmy user and Reddit refugee. Figured I’d try out a message that says “thanks” for setting up and running this cool instance for us - I bet it’s a lot of work. I never spent a penny at Reddit, but I donated here. To my fellow shipmates I’d encourage you to donate your time or money as well to our captain ;)

view more: next ›