d3Xt3r

joined 1 year ago
MODERATOR OF
[–] d3Xt3r 11 points 6 months ago* (last edited 6 months ago) (1 children)

You cannot go back after trying it

I did! Used to have a Samsung 49" ultrawide. After using it for a couple of years, I sold it and got a 16:10 32" QHD, which I found worked better for me (+ one or two laptop screens for chat / random stuff when I'm doing serious work).

The biggest issue I had with the ultrawide is that most of the games that I played weren't optimised for it, especially in some games where things like the mini-map might be at the far end of the screen, or worse, if it was an older game then you'd have to put up with black bars, or play the game in windowed mode.

[–] d3Xt3r 1 points 6 months ago* (last edited 6 months ago) (1 children)

Is that all? Will that remove all the traces of arch?

There will be some other minor dot files in your /home which you might want to review, like .bashrc, .bash_profile, .profile etc. These should be mostly harmless, but if you don't recall customising them, then yeah free to nuke all the dot files. Also be aware that some programs also leave their configs outside the .config folder, like Firefox might have a .mozilla folder, GTK programs might create a .themes folder, vim has .vim. So you might want to review and delete these as well, if you want a clean config.

As for the last step - just before you boot into your new distro, you might to get rid of the Arch/Endeavour entries from your ESP/UEFI. Run efibootmgr to see your current UEFI boot entries, then nuke the entries using efibootmgr --delete-bootnum -b #.

And to get rid of the GRUB configs, delete your <ESP>/EFI/grub folder. I'm guessing your /boot is on your root partition? If not then you'll also need to delete /boot/grub.

Now when you install your next distro, you should get a nice and clean GRUB install.

[–] d3Xt3r 15 points 6 months ago* (last edited 6 months ago) (5 children)

1. No
2. You'll need to delete your ~/.config, ~/.local, ~/.cache ( and maybe ~/.var, which is your Flatpak app data/cache). Might be best to rename your .config instead of outright deleting it, just in case you need to restore some old config.
3. It's been a while since I used Nobara, but IIRC it only creates the default @ and @home subvolumes.
4,5. Nobara should have Timeshift installed by default.

Honestly though, since you said that you want something that "just works" for gaming and coding, you should just get Bazzite. Bazzite is an immutable distro and everything is set up to work out-of-the-box. You never have to worry about broken updates again due to atomic updates and image rollbacks. You can directly boot from a previous image from GRUB (no need to restore it first), pin known good images to your GRUB, and even rollback to any previous image via the web (upto 90 days) - all with just a single command. And for coding, you can easily set up a Distrobox container to install all your tools and IDEs etc, it integrates well with the host OS so you won't even notice/care that it's inside a container.

[–] d3Xt3r 3 points 6 months ago

This was in fact what prompted my search - the Gnome calculator is so horribly bloated, and yeah, it should have no business making network connections, at least not by default - this should be an opt-in behaviour.

[–] d3Xt3r 9 points 6 months ago* (last edited 6 months ago) (1 children)

You can already run Linux apps using Termux and Termux-X11, and I'd say the performance would be better than this demo, because this is running in a virtual machine and uses it's own kernel, whereas with Termux you're running your apps directly on top of the Android Linux kernel. Also, you don't have the overhead of running ChromeOS on top of Android.

[–] d3Xt3r 3 points 6 months ago (2 children)

I don't play D4 anymore so I can't say if this still works, but back when I did, I used to launch it (ie the Battle.net launcher) from Steam, as a non-Steam game.

I also used the latest Proton-GE as the compatibility tool, so that's something you could try as well.

[–] d3Xt3r 1 points 6 months ago

It's r/w, if you specify the filesystem type as ntfs3. I believe if you use just ntfs it'll be read-only, to mimic the behaviour of the old driver, for compatibility reasons.

[–] d3Xt3r 4 points 6 months ago* (last edited 6 months ago)

Mine looks like this:

UUID=blah /media/games ntfs3 uid=1000,gid=1000,umask=000,rw,user,exec,nofail,nocase,windows_names 0 0

If you're copy-pasting this, make sure your uid and gid matches of course.

But the key thing for Steam is you need to have your compatdata folder on a Linux partition, because Proton creates folders with invalid characters (like :). windows_names would prevent that of course, and thus prevents corruption, but it would cause Proton to fail since if can't create those folders/files. So you'll need to symlink that folder on your NTFS disk to point to a folder on a Linux partition.

Eg:

$ mkdir -p ~/.steam/steam/steamapps/compatdata
$ ln -s ~/.steam/steam/steamapps/compatdata /media/games/Steam/steamapps/ 

Of course, before you run the above, you'll need to delete the existing compatdata folder from the NTFS disk.

[–] d3Xt3r 5 points 6 months ago

There's no need to run chkdsk from Windows, you can run ntfsfix directly from Linux:

sudo ntfsfix /dev/path --clear-dirty
[–] d3Xt3r 19 points 6 months ago* (last edited 6 months ago) (4 children)

I'd like to see a simple, dependency-free, calculator app, written in Rust, using egui. All other GUI calculator apps I've seen so far are unnecessarily heavy, using bloated toolkits like GTK or Qt.

This would be handy for those run a GTK/Qt-free environment, and/or those who just want a tiny calculator app (optimised for the smallest binary size) without any external dependencies. Preferably even compiled using musl, to remove any glibc dependencies - resulting in a simple, small, portable binary that can run on any distro and doesn't even need to be installed.

Eventually, I would like to see this idea expanded to other apps - such as a simple text editor, a simple image editor, and maybe even a simple and lightweight web browser using Servo.

[–] d3Xt3r 15 points 6 months ago (7 children)

ntfs3 has had several improvements in 6.2 and 6.8, and it's been pretty stable for me of late. I use it to share/backup my Steam game library mainly + for my portable drives for general data storage/local backups, and haven't had any issues.

It's not orphaned. There was a bit of lull after it was introduced in kernel 5.15, and yes it was a bit unstable in the 5.x series, but it's been pretty good since 6.2 where they finally introduced the nocase and windows_names mount options. The performance improvements are worth it if you use NTFS heavily, so I would personally recommend switching.

[–] d3Xt3r 38 points 6 months ago* (last edited 6 months ago)

It refers to modern Intel CPUs where there are two types of cores - performance cores (P-cores) and efficient cores (E-cores). This is similar to ARM's big.LITTLE architecture which we've seen in smartphones for many years already.

See: https://www.intel.com/content/www/us/en/gaming/resources/how-hybrid-design-works.html

 

FreeRDP 3.0 stable was released today as this open-source implementation of the Microsoft Remote Desktop Protocol (RDP) for allowing nice remote access support.

FreeRDP 3.0 brings relative mouse movement support that is important for gaming via RDP, server-side MS-RDPEL channel support, clipboard improvements, fixed FFmpeg/AAC encoding, improved RPC gateway support, Opus audio support for GNOME Remote Desktop, server-side handling of the mouse cursor channel, AAD/AVX authentication, WebSocket Transport support, SmartCard authentication for TLS and NLA, full OpenSSL 3.x support, and numerous other features and fixes.

In the past two weeks since the prior release candidate, support has been added for AF_VSOCK, improvements to the new relative mouse input support, E2K CPU support in WinPR, Android mouse hover support, and other fixes and minor enhancements.

11
"Summer" in Welly (i.imgur.com)
submitted 11 months ago* (last edited 11 months ago) by d3Xt3r to c/wellington
 

Video credit @Heliogabalus

9
submitted 11 months ago by d3Xt3r to c/newzealand
 

Welcome to today’s daily kōrero!

Anyone can make the thread, first in first served. If you are here on a day and there’s no daily thread, feel free to create it!

Anyway, it’s just a chance to talk about your day, what you have planned, what you have done, etc.

So, how’s it going?

 

Welcome to today’s daily kōrero!

Anyone can make the thread, first in first served. If you are here on a day and there’s no daily thread, feel free to create it!

Anyway, it’s just a chance to talk about your day, what you have planned, what you have done, etc.

So, how’s it going?

 

Winlator is an Android application that lets you to run Windows (x86_64) applications with Wine and Box86/Box64.

Version 3.0 Changelog:

  • Improved Audio Plugin
  • Added PulseAudio
  • Added the option to choose the Box86/Box64 version
  • Added the option to choose the Turnip version
  • Added Custom resolution option
  • Improved Input Controls
  • Improved Lock Cursor option
  • Added Task Manager to main menu
  • Updated OBB Image to version 3
  • Other bug fixes and improvements
 

Welcome to today’s daily kōrero!

Anyone can make the thread, first in first served. If you are here on a day and there’s no daily thread, feel free to create it!

Anyway, it’s just a chance to talk about your day, what you have planned, what you have done, etc.

So, how’s it going?

 
 
  • [MagiskBoot] Don’t pad zeros if signed boot image is larger
  • [MagiskPolicy] Fix genfscon and filename_trans
  • [MagiskPolicy] Fix bug in libsepol
  • [Zygisk] Fix and simplify file descriptor sanitization logic
  • [App] Prevent OOM when patching AP tarfiles
  • [App] Fix bug in device configuration detection
  • [Daemon] Fix certificate parsing of APKs
  • [General] Fix logging errors from C++ code being ignoredq
 

Welcome to today’s daily kōrero!

Anyone can make the thread, first in first served. If you are here on a day and there’s no daily thread, feel free to create it!

Anyway, it’s just a chance to talk about your day, what you have planned, what you have done, etc.

So, how’s it going?

 

The Anbernic RG-ARC is very obviously inspired by the classic Sega consoles and controllers of the past. That six action button setup is something many will be familiar with if you ever had a Sega Saturn.

Hardware Details

RG ARC-D Dual

  • Android 11, Linux
  • LPDDR4 2GB
  • 16GB TF+eMMC 32GB
  • Multi-touch
  • RK3566 Quad-Core 64 bit Cortex-A55, Main frequency 1.8GHz
  • Bluetooth handle function
  • WIFI online pairing

RG ARC-S Single OS

  • Linux
  • LPDDR41GB
  • 16GB TF
  • No multi-touch
  • RK3566 Quad-Core 64 bit Cortex-A55, Main frequency 1.8GHz
  • Bluetooth handle function
  • WIFI online pairing
 

Four years after the Raspberry Pi 4 shipped, today the Raspberry Pi 5 is launching with a much improved SoC leading to significant performance gains.

The Raspberry Pi 5 is designed to deliver a 2~3x performance improvement over the Raspberry Pi 4. The Raspberry Pi 5 features a quad-core Cortex-A76 processor that clocks up to 2.4GHz, compared to the four Cortex-A72 cores found in the Raspberry Pi 4 that only clocked up to 1.8GHz. The graphics are also much-improved with now having an 800MHz VideoCore VII graphics processor over the VideoCore VI graphics with the Raspberry Pi 4. The Raspberry Pi 5 is capable of driving two 4K @ 60Hz displays and features 4K @ 60 HEVC decode hardware capabilities.

Also interesting with the Raspberry Pi 5 is that it features in-house silicon in the form of the RP1 "southbridge" used for much of the board's I/O capabilities. This southbridge should yield faster USB I/O along with other I/O bandwidth upgrades like a doubling of the peak SD card performance. The Raspberry Pi 5 also features a single-lane PCI Express 2.0 interface for improved connectivity.

27
Announcing CrossOver 23.5.0 (www.codeweavers.com)
submitted 1 year ago by d3Xt3r to c/apple@lemdro.id
 

CrossOver 23.5 has been released for macOS, Linux and Chrome OS.

This release offers an alternate way to run DirectX 11 and DirectX 12 games through CrossOver, using components from the Apple game porting toolkit. It can be enabled by toggling on “D3DMetal” in the right bottle sidebar.

The new D3DMetal option improves quality, compatibility, and performance for many games on Macs with the M1 chip or later, including Elden Ring, Hogwarts Legacy, Cyberpunk 2077, Armored Core VI Fires of Rubicon, Mortal Kombat 1, Deep Rock Galactic, Satisfactory, Monster Hunter Rise, God of War and Batman Arkham Knight.

view more: ‹ prev next ›