Linux - Reddit – Telegram
Linux - Reddit
764 subscribers
4.18K photos
207 videos
39.9K links
Stay up-to-date with everything Linux!
Content directly fetched from the subreddit just for you.

Powered by : @r_channels
Download Telegram
First time using anything linux, its super fun

https://preview.redd.it/sz68fn4oekof1.png?width=1366&format=png&auto=webp&s=c69c86d2f39b950f39304d9327d3a0bb8a3e0677

I was messing around with the Linux environment on my Chromebook (I was using adb to do some stuff), and I've always wanted to switch to Linux, but today I decided to do some stuff, and I really like this. Any tips or tricks and stuffs? :3

https://redd.it/1nedxrq
@r_linux
Looking for people who have configured really fast booting Linux images.

Hello Linux enthusiasts!

I'm looking for someone with experience in configuring an image that can boot in <2 seconds on an RK3566-based ARM board. This is, of course, paid work :)

The work:
Build a minimal Linux image (likely Yocto or Buildroot) targeting RK3566.
Optimise boot chain (u-boot, kernel, init, rootfs) for fast startup.
Strip down drivers and services to the absolute minimum needed.
Tweak

If you have relevant experience, please send me a DM.

https://redd.it/1newg3w
@r_linux
So, I just went on GitHub to take a look at opens PR, and most of them are trolls
https://redd.it/1nezffr
@r_linux
Linux top: Here’s how to customize it.

https://preview.redd.it/02lldl00zqof1.png?width=1275&format=png&auto=webp&s=3d7c934146aa52a0ea494d2142b6566167630bd8

It’s been several years since my original write-up on customizing top, and my setup has evolved quite a bit since then. This screenshot is my current four-pane layout as of 2025. See other layouts, instructions, and more details here.

https://redd.it/1nf5fae
@r_linux
I want to show my appreciation for linux

My interest in computers generally started when I was 7, with an old laptop running Windows 7. it was slow and all but somehow I learned how to install programs and stuff using it but I quickly got curious about how everything actually worked. That curiosity led me down a rabbit hole.

Before I even understood what Linux was, I was already deep into Android modding and iOS jailbreaking. I had reached 9 years old, I was flashing custom ROMs and unlocking bootloaders of old android phones lying around and what I didn’t realize at the time was that all of this came from Linux and an open-source mindset. the idea of freedom, control, and pushing devices beyond what they were "supposed" to do kinda fascinated me

Eventually, I discovered Linux itself. That completely changed how I saw software. started by running Ubuntu on old laptops, to eventually learning how to compile kernels and getting frustrated. Linux taught me about how computers work beyond just windows.

As I got deeper into it, I started exploring embedded devices and hardware-level mods. I’ve repurposed old routers with openwrt; experimented with running lightweight distros on raspberry pi and even built a server from an old laptop. I’ve also done hardware mods just for the challenge like building Hackintoshes (which taught me about EFI) and opening up devices to replace Wi-Fi cards, BIOS chips, or even reflash firmware manually. I’ve bricked and fixed my fair share of devices, but that's how I learned by breaking things and figuring out how to recover them.

Now, I run an Arch Linux server and media server. Almost every device I own has run Linux at some point. If i see Macos or Windows anywhere it'll kinda piss me off about how Microsoft or Apple doesn't allow freedom to users Everything I have done isn't even the tip of the iceberg of what linux is but seriously i think linux is the coolest thing.

This entire post sounds kinda weird but Im really grateful. I’m super thankful for the Linux and open-source community. They’ve built tools and shared knowledge that helped me learn all of this on my own. I’m only 13, but Linux and hardware modding have already taught me more than I ever expected and I’m just getting started.

https://redd.it/1nfabc0
@r_linux
Roadmap to Arch Linux

Hello everyone!
I’m interested in learning more about Linux and eventually using Arch as my daily driver. That being said, I’ve read that Arch isn’t beginner friendly. So my question is what distros would be best to create a sort of roadmap that would lead to me learning Linux and eventually using Arch as my daily driver. Thanks!

https://redd.it/1nfmyza
@r_linux
ms paint alternative?

I use ms paint regularly on another windows pc. copy paste the screenshot, crop, brush to color something out when needed add text as well

what is the mirror alternative to MS paint? crop/rotate/brush/text are musts it needs to have

linux mint newbie

https://redd.it/1nfnkpm
@r_linux
ms paint alternative? copy paste as IMAGE-kolourpaint

so trying kolourpaint now. I do copy paste but it only copies text into a box. it doesnt do a true print screen so I can save out as jpg. its just copying text

what am I doing wrong?

print screen on an image I want, paste into KP, but shows text

I want a true print screen image

https://redd.it/1nfob73
@r_linux
Linux has some really good audio tools with names like... this
https://redd.it/1nfub6a
@r_linux
are there programs to do this

so theres a game i wanna play that for some reason uses arrow keys.and since its a bullet game,and my arrow keys are small,that makes it very very hard to play,so are there any programs that can turn wasd into up down left right signals only if the specific x86 file is running?



https://redd.it/1nfvtc2
@r_linux
Anyone using Linux as a HTPC?

I’m setting up a HTPC, and I was wondering if anyone is using Linux for a HTPC, and if so what distribution?
I’ve recently started using Mint, and I was going to use that, but then I’ve read posts where others have used cinnamon.
Any help/clarity will be greatly appreciated!

https://redd.it/1nfwoyb
@r_linux
Do you think Immutable Distros will be the future of Linux systems? Have you any plan to switch? YES or NO, but why?
https://redd.it/1ng5tal
@r_linux
Simple External Drive Snapshot Backups Using rsync and ZFS

I wanted to mirror an 8TB XFS-formatted local SSD to an external 8TB USB drive to protect against drive failure. I don't like btrfs, but I still wanted snapshots on the backup drive. This is how I did it:

sudo apt install zfsutils-linux
sudo apt install zfs-dkms -y
sudo apt install zfs-auto-snapshot

Reboot, then:

sudo zpool create backuppool /dev/sdb (use your drive device path, check lsblk)
sudo zfs create backuppool/backupdata
sudo zfs set mountpoint=/backup backuppool/backupdata
sudo zfs set compression=zstd backuppool/backupdata

Check that /backup exists etc. Then as root, these cron entries will create and retain 8 weekly snapshots. Right after each snapshot, this will initiate an rsync update from primary to secondary.

crontab -e

15 0 * * 1 root flock -n /var/run/zfs-auto-snapshot.lock sh -c 'LOCAL_TIME=$(date +\\%Y_\\%m_\\%d_\\%H\\%M); zfs-auto-snapshot --syslog --label=weekly_${LOCAL_TIME} --keep=8 // 2>/var/log/zfs-snapshots.log'

15 1 * * 1 rsync -avhH --delete /primarydatapath /backup >/dev/null 2>&1


NOTES:

Using zfs-19 compression buried the processor, so I swapped to regular zstd. Using the new "quick dedupe" in ZFS 2.3+ also buried the processor, so I'm not using that either. I briefly considered disabling speedstep which would have capped the processor at 2.2ghz (down from 3.8) to keep the temps down, but I only cared about getting enough savings to provide snapshot space. Against 5TB of video and picture data, I'm at 1.3:1 savings. You can view the compression via:

zfs get compressratio backuppool/backupdata

You can access snapshots in /backuppool/.zfs/snapshot. Also, optional, you can disable the automatically installed snapshot schedules from zfs-auto-snapshot by removing the following files so that you only take the weekly snapshots in the cron job above. I don't have any data change other than the rsync, so these snapshots were pointless for me:

\# find . | grep zfs | grep snap | grep cron

./cron.daily/zfs-auto-snapshot
./cron.weekly/zfs-auto-snapshot
./cron.monthly/zfs-auto-snapshot
./cron.d/zfs-auto-snapshot
./cron.hourly/zfs-auto-snapshot

Have fun!





https://redd.it/1ng5gm9
@r_linux
Spotted linux on a bus screen, but they have some errors.
https://redd.it/1ng92bz
@r_linux