“If you don’t have organic intelligence at home, store-bought is fine.” - leo (probably)
I take my shitposts very seriously.
“If you don’t have organic intelligence at home, store-bought is fine.” - leo (probably)
Counterpoint: if you have the ability and willingness to learn how Linux works, un-fucking a broken Arch installation will teach you more about the system than spending months with a stable distro. I know because my first serious daily driver was Manjaro.
mouse movement stops and then “catches up” every second or so
I had that issue with a wired G502 mouse. It was caused by an excessive polling rate, and setting it to 125 Hz fixed it.
If you have a specific purpose in mind for the drive, then mounting it statically is probably the easiest solution.
My setup is:
/
/games
/home
/hdd
/mnt
and /media
are used differently based on the OS. /mnt
is supposed to be used for temporary manual mounts, but you can use it (or a subdirectory) as a permanent mount point. /media
is meant to contain mount points for dynamically mounted removable devices, but modern systems generally use /run/media/$USER
for that purpose; I would personally avoid it nevertheless.
…maybe it’s better that the Windows source code remain closed.
At the same time, I’d love to see the developers of the world glimpse at that eldritch cognitohazard and collectively go insane.
Command line cheat sheet (with bonus vim controls):
You’ll have to use a virtual machine and pass through the USB device.
You’ll have to install QEMU (ideally qemu-desktop
since you’ll only need the x86 VM), libvirt
, and virt-manager
. Start the libvirtd
service (enables the management interface), then run virsh net-start default
as root (enables networking). Create and install a Windows virtual machine in the Virtual Machine Manager application. I recommend Windows 10 or earlier because 11 needs extra steps. Once the VM is running, open the Virtual Machine menu, click on “Redirect USB Device”, then choose the device you want to configure. It will be detached from the host OS and passed through directly to the guest.
Color management ensures accurate and identical color reproduction across display devices. It’s extremely important for artists and designers, and its absence in Wayland is a deal breaker for them.
I was ready to have a rant about PHP. Well played.
Qtile was my first daily driver tiling WM. It was a pain in the ass to install, but it’s damn near as extensible as DWM (since the config file is literally a python program). The only thing I hate about it is that you can’t reposition windows in the tiling layout by drag-and-drop.
If touchpad gestures work, I’m putting that on my macbook air. That looks so comfortable.
Linus Torvalds and Kent Overstreet (the main developer of bcachefs) often argued on the Linux mailing list over adherence to long-standing practices when submitting pull requests. In the latest confrontation, Kent dropped this absolute clown shoes response:
If you’re so convinced you know best, I invite you to start writing your own filesystem. Go for it.
Narrated by Aussie Waylandman: https://www.youtube.com/watch?v=07XjCGQpwpw&t=869s. I recommend watching the entire video, it’s very entertaining.
I think you and the bcachefs owner would be very good friends.
The reality is that, although there are quite a few standalone Wayland compositors, you don’t hear about most of them, because almost all of them suck in one way or another if you go beyond opening terminals.
Oh, fuck off! I can barely use Blender because dragging a spinner control does something with the cursor that makes Hyprland shit its pants. It’s been fixed and broken several times. May or may not be related: Vaxry has expressed his disdain for Blender in issue notes. (edit) found it: https://github.com/hyprwm/Hyprland/issues/3270
(edit2) I should also mention that Hyprland is the only compositor where this happens. KDE Plasma, Qtile-wayland, Sway, Wayfire are all fine.
Dude’s shilling for his own compositor backend right after ditching wlroots. He has zero credibility in this matter.
That’s a fair point. I rarely read comments on news articles, but morbid curiosity overpowered my self-preservation instinct.
The comments under the article are a special kind of braindead.
I tried dual-booting Win10 and Arch for a few months. It was problematic.
I had to set the clock every time I switched because one expected the hardware clock to use UTC time and the other expected local time.
NTFS on Linux is not good. The driver works, but there are fundamental differences between NTFS and Unix-like filesystems that makes cooperation difficult (e.g. NTFS uses ACLs instead of the user/group ownership and user/group/others permissions of Unix). Windows also places additional restrictions on the filesystem (e.g. NTFS supports file names that contain :
, Windows doesn’t) that can completely bork the volume if violated.
But the worst offender, and what made me nuke Windows entirely, is Windows Update. It completely fucked up the boot partition, deleted the bootloader, then died and left Windows unusable.
These are all issues that can be solved, if you know how to solve them. My advice is to go cold turkey and delete Windows from your life.
It’s another slice of Swiss cheese. If the user has a strong enough password or other authentication method through PAM, it might stop or hinder an attacker who might only have a compromised private key, for example. If multiple users have access to the same server and one of them is compromised, the account can be disabled without completely crippling the system.
Using
sudo
can also help you avoid mistakes (like accidentally rebooting a production server) by restricting which commands are available to the user.