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

Powered by : @r_channels
Download Telegram
Overview Linux Distros,Desktops (Everybody can help)

Hi I want to create a clear overview of the most relevant distributions + desktops especially for beginners to make their change to the right operating system as easy as possible. But of course i need your help to create a brilliant overview for anyone.
After finishing i will upload it in r/linux

In the following i will show you my thoughts how i would structure it. There is NO specific order just an overview of my thoughts (any advices,additions are welcome)
‼️Reminder only the most relevant (no gentoo,...)‼️


💽Distributions💽

1. Experience with Linux:
Beginner | Advanced | Pro

2. Base (head) Distros:
Debian | SLS | Arch

3. Main Distros:
Ubuntu | Red Hat Linux | Debian | Arch

4. Derivatives:
-Ubuntu
Elementary os | Linux Mint | Zorin os
-Red Hat Linux
Fedora | Cent os
-Arch
Manjaro


🖥️Desktop Environments🖥️

1. Resource consumption:
Low | Medium | High

2.Desktops:
KDE Plasma | Gnome | XFCE | Deepin | Cinnamon

https://redd.it/ldsoeq
@r_linux
Adobe Lightroom alternatives

Hello, I've been trying to move away from Windows into Linux and I now find myself in a pickle, are there any good lightroom like software available? mostly something with similar editing dynamic/ core features.

Ideally something that runs on both Debian and Arch-based distros, but just Debian is ok since I'm probably gonna move to Pop_OS due to its really good graphics support...and because I use Davinci Resolve.

https://redd.it/le6xho
@r_linux
What is happening when I press the number keypad with numlock on and random characters show up in my terminal as input?

It's happened before with Cisco IOS terminal access as well. Is it random characters from memory then? No need to ELI5, I'm learning assembly on ARM currently and the thought occured to me that it might have something to do with what's currently stored in the register that would've been used to input a number if the numlock was off.

Googling it only came up with people asking for help due to malfunctioning keyboards.

https://redd.it/le8tqc
@r_linux
What sort of things should a Linux beginner start learning?

I'm a noob to Linux. Okay not a complete noob like I know how to install stuff how to use terminal, root, SSH that kinda stuff but I feel like I can do so much more with Linux.


What kinda stuff should I start learning?

https://redd.it/le9sdr
@r_linux
Is there a self-hosted File Server program that's accessible via iOS?

I want to set up a simple dropbox type file server for my girlfriend to store her photos. She just got an iPhone for the nice camera, and now I'm stuck figuring out how to host a file server that can be intuitively accessed via her iPhone. Whether it's by the share function or an iPhone app, doesn't really matter much. As long as it's free and she can easily save, browse, and download files on our home PC over the internet.

https://redd.it/leddjc
@r_linux
Made a noscript to auto unzip files in your downloads folder

My job requires me to download a TON of zip files. Its a very simple noscript, but I recently lost it on a machine and really felt the difference. So I recreated it and figured I'd share with yall.

​

Some notes, I have it run 6 times on a 10 delay, this is because cron doesnt get anymore precise than a minute, so this allows the functionality to happen every 10 seconds. If there are multiple files in the zip, it creates a directory, otherwise if only 1 file if will just directly unzip. It also deletes the zip, which you can remove if its too intrusive.

​

cd home/falcon/Downloads

i=0
while $i -lt 6 ; do
echo "On pass $i of 6"
for file in ./.zip; do
[ -f "$file" ] || continue
lines=$(zipinfo -1 "$file" | grep -v "/." | wc -l)
if [ $lines -gt 1 ]
then
echo "Found multiple files, creating directory"
formattedName="${file%.
}"
mkdir "$formattedName"
unzip -fo "$file" -d "$formattedName/"
else
echo "Found only 1 file"
unzip -fo "$file"
fi
rm "$file"
done
sleep 10
i=$(( i + 1 ))
done

​

https://redd.it/legm9g
@r_linux
How do i make a widget?

I want to make a widget on the ubuntu status bar. It will have some real-time updated text & if i click it, i can have menu with icons and maybe submenus with more stuff. I want to automate some of my work without having to run many terminals. All it in one.

Anyone know what example/library/code i should get and then modify to do what i want?

https://preview.redd.it/9cn35lubq0g61.png?width=127&format=png&auto=webp&s=77ac6cc4284c55f58bc9fd8227ba6fe5c6590f67

https://redd.it/leixvm
@r_linux
Can I live boot linux from a partion and mount same hard disk (using a mac)

I have a 2015 mac and a 1tb hard drive. can I partition the hard disk for live booting kali and/or windows both, and mount the rest on both. I am learning reverse engineering and ghidra etc isn't working on a virtual machine.

https://redd.it/lejn5p
@r_linux
Recommend me DE or Window Manager

Hello, folks! I'm looking for new Desktop Environment or a Window manager, currently I'm using i3wm with polybar, however there are plenty of small bugs that bother me. When someone is calling me on slack/Skype I don't see the dialog box to answer unless I have the application opened on my screen, having dialog boxes from IDE's like Pycharm, IntelliJ and so on is pain in the ass. I'm a programmer / systems administrator and have tons of terminals open And IDE's, I don't want to spend time debugging my own machine. Most of the features from i3 that I use are: toggle full screen, having split screen, moving apps to different deaktop (page whatever is called), resizing windows, having specific apps to open to specific desktop also using single 4k monitor.

https://redd.it/lek2b5
@r_linux
VServer Problem to use Virtual Machine + Docker

Because Hostsystem is a rent virtual Server Ubuntu 18.04 we want to run similar virtual Machines as guest systems in this VServer but we dont have Access to Install Kernel Modules so we cant Run virtual Box etc. How could we get it?
we can Run Docker-

https://redd.it/leje5z
@r_linux
Linux+ Exam

Start off by saying good morning. I wanted to reach out to the all knowing Reddit for some assistance. I’ve been in IT for 16 years and I’ve I finished my IT degree. I will just be working on certs from now on. I’ll be taking my Linux+ Exam at the end of the month and wanted to check and see if anyone out here had a decent study guide to go off of of. The Comptia book leaves me wanting more.

BL

I’m looking for a study guide or a location to get one

https://redd.it/lenbr0
@r_linux
Find IP on it's own

Hi. Is there anyone is this group that can help me.

I have next question:

I have a Ubuntu machine I want this machine to get an adress on the network. BUT if it is not in a DHCP network, that it tries to get an IP adress on its own.

For example by scanning its interface on the ip addresses that pass by and then try to find create one of its own and then find the gateway outside.

Does anyone have any idea how to create this with what tools?

https://redd.it/leniq1
@r_linux
Where should you install frameworks ?

So I'm currently installing a framework named kafka on my personal computer just for personal use. (Not in production)

And the question just hit me, where should I put this ? Usually I just put in in my personnal user folder add the bin path to the PATH global variable and that's it.

Honestly I find it weird, I don't want to have such folders in my personal folder, but I couldn't figure where I should put it ?

The most logical place would be the opt folder but I want to take a second guess and ask it here.

https://redd.it/lepzzg
@r_linux
In Console 39 we got a look into what the process for maintaining various Unix ports is like by interviewing a long-time maintainer of the doas port. I thought /r/Linux might be interested :)
https://console.substack.com/p/console-39?r=3cbez&utm_campaign=post&utm_medium=web&utm_source=linux_subreddit

https://redd.it/lepchx
@r_linux
Installing Pop!_OS on a legacy HP laptop


I have an old HP HDX18t ddr2 that I’m refurbishing and I wanted to put a Linux distro on the new drive I’m installing. The laptop has two drive bays which is really neat and I wanted to put Pop! On one of them but was unsure if I’d run into compatibility issues. Does anyone know if Pop! Will run on a legacy system from 2009?

https://redd.it/leuldq
@r_linux
Polling CPU temperature for RAPL framework.

Hi. I got a Xeon 8260M cpu with a slightly insufficient cooler, that is, the cpu temperature slowly ramps up until it reaches >90C.The good thing is that it takes more than 10 minutes under full load to reach such temp.

If I power-cap it using the RAPL framework, taking off some \~20W from its TDP, the temperature gets quickly under control, at the expense of some 300-400 MHz.

So, here is what I want to do: I want to poll the cpu temperaure every (say) 10 seconds. If it's above some threshold, issue the appropriate RAPL command. As it gets under some other threshold, issue another RAPL command to make the CPU regain its full TDP.

My question is: how can I poll the temp from inside a shell noscript and/or python program?

https://redd.it/levt40
@r_linux
Best Tool for Multiboot USB with Persistence?

Best Tool for Multiboot USB with Persistence?

What is the best utility/software for making a Multi-Boot USB with mutliple linux peristence systems?

Basicly what is the easyiest best and safest to make mutiple persistence ISO's?

Easy2boot, YUMI, or Ventoy?

Would like to hear some opinions.


>(I have used Easy2Boot already)

https://redd.it/lex3v5
@r_linux
nfs soft mode from /etc/fstab with systemd support

Can't mount nfs resource in soft mode using /etc/fstab and systemd-mount: «soft» is unrecognized option. I can do this manually using terminal, but I'm not sure if «soft» option works in this case.

String from /etc/fstab looks like this (well, trying to add «soft» option after «bg» one and get an error:

server_ip:/mnt/data /mnt/nas nfs auto,nofail,intr,x-systemd.automount,x-systemd.device-timeout=1,x-systemd.mount-timeout=1,_netdev,bg 0 0

Does anyone know something about this? May be «soft» option is deprecated now?

https://redd.it/lev8xc
@r_linux
Bionic libc Based Linux Distro

I wonder Is there a Linux distro that uses Google's bionic libc by default? İf there, what is? And if no, is there a use case for bionic libc on desktop Linux distros? Is it possible to run regular Linux programs via bionic libc? Are there any advantages bionic libc over gnu libc?

https://redd.it/leue20
@r_linux