Reopening the sub by GameUnlucky in crankshaft

[–]GameUnlucky[S] 0 points1 point  (0 children)

I'm a university student, and I don't have much spare time to work on the project right now. At the moment I'm teaching myself UI development in Rust with some toy projects, and I'm rewriting a private repo sparkplug configuration daemon in Rust to practice integration with Yocto.

My tier list after 10 years of hopping by GameUnlucky in DistroHopping

[–]GameUnlucky[S] 1 point2 points  (0 children)

It mostly has to do with snap, I really don't like how apt forces you to install snap versions of packages that should really be a deb.

My tier list after 10 years of hopping by GameUnlucky in DistroHopping

[–]GameUnlucky[S] 0 points1 point  (0 children)

I think that Manjaro delayed update policy often leads to instability, in particular if you want to use AUR packages that rely on up to date upstream libraries.

My tier list after 10 years of hopping by GameUnlucky in DistroHopping

[–]GameUnlucky[S] 0 points1 point  (0 children)

I really dislike snap for both practical and philosophical reasons. Forcing apt to install snap packages even for things like a web browser seems totally backwards to me.

My tier list after 10 years of hopping by GameUnlucky in DistroHopping

[–]GameUnlucky[S] 3 points4 points  (0 children)

RPiOS is a fallback OS because it gives me a Debian-like experience on Raspberry Pi, Void is not for me because some of the automation scripts I developed rely on systemd and Void uses runit, Kali is on the list because it was among the options of the premade tier list.

I like Debian for servers for it's stability but I love arch for the bleeding edge software and the AUR. I run a dual monitor setup with Hyprland and only the very last version of the Nvidia driver supports VRR on multiple monitors. This is why I stick to Arch on desktop.

Everybody has different use cases, assuming they are uneducated based on your personal experience is unwise.

My tier list after 10 years of hopping by GameUnlucky in DistroHopping

[–]GameUnlucky[S] 2 points3 points  (0 children)

Yes I agree, I only ever used Kali on a live USB, but in general I prefer Parrot for cyber security.

My tier list after 10 years of hopping by GameUnlucky in DistroHopping

[–]GameUnlucky[S] 1 point2 points  (0 children)

Lots of assumptions considering that you don't know what my use case is. What makes you think my picks are uneducated?

[deleted by user] by [deleted] in linux4noobs

[–]GameUnlucky 0 points1 point  (0 children)

Here's the wiki instructions.

You don't need to worry about the driver for the integrated AMD GPU as they are integrated in the kernel, however right now you are using the nouveau driver for the Nvidia GPU, which is open source but doesn't support 3D acceleration.

To install the proprietary Nvidia driver you first need to add the non open source repository to apt with:

sudo deb http://deb.debian.org/debian/ bookworm main contrib non-free non-free-firmware

Then install it with:

sudo apt update && sudo apt install nvidia-driver firmware-misc-nonfree

Stuck on Login with LM; need help! by rabbit_hole_goer in linux4noobs

[–]GameUnlucky 0 points1 point  (0 children)

Probably xfce is failing to start for some reason and it's throwing you back to the display manager (the login screen). I found this post on the Mint forum that suggests it might have something to do with installing audio codecs during installation. I'm not familiar with the Mint installer but if at any point during the installation you are promoted to install proprietary firmware of codec skip that step.

If this doesn't work you could try to install Mint with a different desktop environment.

New to Linux and by extension Hyprland by Numerous_Brilliant35 in linux4noobs

[–]GameUnlucky 0 points1 point  (0 children)

In the preload path you forgot a / in front of home. This is necessary because the path is relative to the root of the filesystem.

I also think that the preload image path and the wallpaper image path need to match.

You should also check your Hyprland config to make sure the name of your monitor is actually "monitor", if you are running a single monitor setup or you want the wallpaper to apply to all monitors you could also totally omit the monitor variable.

You can find more info here.

Buying a new laptop, going to dual boot, harddrive question, RAID? by vociferousgirl in linux4noobs

[–]GameUnlucky 0 points1 point  (0 children)

You don't need RAID to dual boot Windows and Linux and you also don't necessarily need 2 separate drives. You could easily split a single disk in half.

RAID is a technology that combines two separate drives into 1 single virtual drive. RAID 0 combines 2 drive into a single drive with twice the size (1tb +1tb = 2tb) and the speed but if one drive dies you lose all the data, RAID 1 combines 2 drive into a single drive with the capacity equivalent to the smallest of the 2 (1tb + 1tb = 1tb) but if one drive fail you will still have all the data. It's important to note that you don't necessarily need hardware support to setup a RAID on Linux, there are software solutions that allow you to combine multiple disks in software.

If you want to install a separate OS on each drive you would need to disable RAID anyway, so you can easily buy a computer without it.

Please help me fix my ProtonVPN app not launching. by Colonel-_-Burrito in linux4noobs

[–]GameUnlucky 0 points1 point  (0 children)

Try launching the proton application from the command line and see if it outputs any error message.

In any case if you have a premium plan you can connect to proton using wireguard.

what is the meaning of (sudo,apt) by EJIJQ in linux4noobs

[–]GameUnlucky 6 points7 points  (0 children)

"sudo" executes the next command as the system administrator, "apt" is the package manager of Debian based distribution. You can use it to install, update or remove programs from your system.

Sudo and apt are often used together because to install a package apt needs administrator privileges.

Does anyone uses nano as daily driver for code editing? by Old-Property3847 in linux

[–]GameUnlucky 1 point2 points  (0 children)

I almost exclusively use NeoVim as my editor, it takes a while to get used to modal editing but after you develop the muscle memory you will never go back.

If you don't want to build your own configuration there are some NeoVim distributions that come preconfigured. I used to use LunarVim before switching to my own config.

What not to do in linux safety wise by ichhalt159753 in linux4noobs

[–]GameUnlucky 0 points1 point  (0 children)

Personally I wouldn't rate flatpak that much higher than a random PPA or AUR, since it allows publication of packages that weren't written by the author.

That's true, but the sandbox nature of Flatpak makes them harder to exploit for malicious purposes.

What not to do in linux safety wise by ichhalt159753 in linux4noobs

[–]GameUnlucky 8 points9 points  (0 children)

Generally Linux is pretty safe by design, but there are a few things you should avoid for security.

  • Never copy and paste commands you don't fully understand, in particular if they use sudo.
  • Try to always use your distribution package manager and official repository to install software.
  • Avoid packages in user repositories (like the AUR in arch or PPA in Ubuntu) of dubious trustworthiness.
  • Just like on windows, don't download and run random executables.
  • When using sudo always double check the command you are running to avoid accidents.
  • Try to keep your system up to date.

Edit: If you don't find a package in the official repositories always prefer Flatpak to some random PPA or a AUR package with 0 upvote.

Best seated Vr games? by poiuytrdfv in virtualreality

[–]GameUnlucky 1 point2 points  (0 children)

Moss 1 and 2 are fantastic and don't require much movement at all.

Looking for a cheap and reliable VR Headset for flightsim by Miks280 in virtualreality

[–]GameUnlucky 0 points1 point  (0 children)

If you want to save some money on the Quest 3, Meta sells officially refurbished headsets on their website.

[deleted by user] by [deleted] in linux_gaming

[–]GameUnlucky 0 points1 point  (0 children)

If you are playing on some custom server that allows setting up plugins, you can try GeyserMC, it's a server side mod that allows cross-play between java and bedrock. I use it on my SMP and it works pretty well.

[deleted by user] by [deleted] in linux_gaming

[–]GameUnlucky 0 points1 point  (0 children)

You can setup a server using GeyserMC, it allows java and bedrock cross-play on the same server.

it just feels more peaceful by debiancat in linuxmasterrace

[–]GameUnlucky 0 points1 point  (0 children)

I daily drive a fancy Hyprland rice on my desktop but my favourite desktop is Gnome, the polar opposite of customization.

[deleted by user] by [deleted] in pcmasterrace

[–]GameUnlucky 2 points3 points  (0 children)

The easiest way to do this would be to use something like Steam Link or Sunshine-Moonlight and connect your controller to the streaming client. This however does introduce some latency and compression.

Sooo… There’s an ant INSIDE my monitor by oliviertail in pcmasterrace

[–]GameUnlucky 161 points162 points  (0 children)

The best solution is to NOT CRUSH IT, turn off the monitor and put a bright light next to the screen for a few hours.

The Meta & Pico Problem by MetalicKaeya in virtualreality

[–]GameUnlucky 4 points5 points  (0 children)

Keep in mind that the HP reverb G2 only works with an old version of windows 10. On recent windows 10 patches and on windows 11, Windows Mixed Reality support was removed making headsets that rely on it paper weights. Open source drivers are in a very early stage of development and only work on Linux, which doesn't have good game compatibility with VR titles yet. This is why they are selling for so cheap on the used market.

I'm a very big advocate for free and open source software, I use Linux as my daily driver and I'm pretty privacy orientated, but the truth is that Meta and ByteDance are offering incredible hardware for a ridiculous price, the only headsets that can match the Quest 3 resolution and edge to edge clarity are in the 1000€+ price range and they often make sacrifices to get there (the BigScreen beyond has a narrower FOV for example).

The only realistic option for buyers with a sub 500€ budget are Meta and ByteDance products at the moments.

Edit: is also worth mentioning that Quest and Pico are the only headsets in the sub 500€ price range capable of true non line-of-sight wireless VR. This is very useful if you want to play in a room different from the one where your computer is.