linux

This magazine is from a federated server and may be incomplete. Browse more on the original instance.

Crozekiel, in Distro Picking

If I had to pick a recommendation from those 3 for a novice Linux install I’d probably pick mint.

blakeus12,
@blakeus12@hexbear.net avatar

would you recommend another distro? if so i would love to hear it

Crozekiel,

Sure. I didn’t want to originally as I hate being that guy when someone asks “x or y” shouting “try z!”, lol.

If you are primarily planning to game on the computer, I’d recommend popOS to new to Linux users. System76 has some good tweaks for gaming performance behind the scenes and excellent driver support all out of the box. You can get all of these benefits on other distributions, but it’s work to get them that I wouldn’t recommend to someone not yet pretty comfortable in Linux.

Beyond that, there are 2 others I’d recommend to keep an eye on, maybe not jumping in as your first foray into Linux, but are really good once you have some confidence built up. Those are Bazzite (an immutable fedora off shoot built around gaming, even as a steam deck replacement os but the desktop version is also pretty great as far as my experiences) and Garuda (rolling release arch derivative also geared toward gamers, is usually pretty impressive in benchmarks compared to other distro out of the box). Bazzite has a lot of those same popOS tweaks out of the box, and primarily uses flatpak for stuff you install, so you don’t need to update your entire system just to keep discord happy. Garuda does a good job holding your hand compared to vanilla arch and has a lot of handy stuff setup and installed out of the box, but it is a rolling release so expect to run updates often (for this reason I’m not a fan of using it on an only occasionally used system). Bazzite does recommend against dual booting in the traditional sense using grub, they recommend removing other drive with an os during install and then using bios to choose what to boot, and that’s the biggest reason I’d recommend being more comfortable before trying it. You know your comfort and skill level better than anyone else here.

All that said, I’m not discounting Linux mint - it’s a great os choice for all around use, especially coming from windows. But it may require more tweaking and fiddling to get the best gaming performance out of compared to something built around gaming. Ultimately, same thoughts about fedora - it’s a great all around os, but if your primary concern is gaming it might take more work to get the best experience possible. Not to say your experience will be bad without all that effort either, it’s all to be taken with a grain of salt.

blakeus12,
@blakeus12@hexbear.net avatar

thank you! i will keep that in mind when i inevitably start hopping distros after a while

Xavier, in Linux holds more than 8% market share in India, and it's on the upward trend

In Canada, Apple is taking most of the increase, I wish Linux was more prevalent but I’m happy to see the downward slope for Windows:

https://lemmy.ca/pictrs/image/5eba766d-a296-4b2e-974e-9bfa9fb5ca5e.jpeg

franklin,
@franklin@lemmy.world avatar

I just hope asahi Linux takes of because the M3 looks sick but I’ll be fucked if I get sucked into the apple ecosystem. I’d rather be forced to use Windows on arm.

Daeraxa, in Linux on a 2in1 for Uni

I have a thinkpad yoga x380 and although I dont use the stylus or tablet mode very often, it works really well when I do. Running fedora 38.

TheHobbyist, (edited ) in CLI monitoring with GPU overview

I don’t know what GPU you have, whether it is AMD, Nvidia or Intel, but if you use Nvidia, the standard tool is nvidia-smi (if you install the proprietary drivers from here with the optional cuda package, you can access the command) . You will need to combine it with the watch tool for real time info.

Otherwise, the one I prefer is nvitop.

I’ve seen Intel specific tools too, but don’t recall them. And I’m not familiar with AMD tools.

jlow,

Oh, nvitop looks really nice, thanks! So far the only thing that seems to correctly read my GPUs data is a fork of the KDE system monitor widget 🤷‍♀️

governorkeagan,

I’ve been using nvtop but I’ll have a look at nvitop as well. Thank you!

muhyb, in CLI monitoring with GPU overview

I don’t know if there is a unified tool for that but I use btop and nvtop side by side. I don’t really care but if there is one, I’d like to know as well.

governorkeagan, (edited )

I’ve been using nvtop as well

Macros, in Linux on a 2in1 for Uni

I had good experiences with the Zenbook-Flip Series from Asus. Linux support is great, build quality too. It even survived a big drop with only the screen falling out, but still working. I just inserted it again. Battery life is also great which is perfect for university.

Palm rejection did not work reliable however. I just got used to disable the touchpad with a keycombo whenever I started typing longer passages of text.

Prunebutt, in Linux on a 2in1 for Uni

There’s a quite active community of people running linux on surface devices back on reddit.

macallik, in SHARE WITH THE CLASS: What aliases are you using?

(Bash-Specific)

App-Specific

alias battery='upower -i $(upower -e | grep 'BAT') | grep -E "state|to full|percentage"' # Get the battery level of my laptop server when I ssh into it

alias audio="yt-dlp -f 'ba' -x --audio-format mp3" # Download the audio version of a youtube video

alias wttr="curl wttr.in/Chicago" # Get the weather of my city in the terminal

Terminal Navigation

alias ba2sy="cp ~/.bash_aliases ~/Sync/" # copy my current iteration of my aliases to my shared syncthing folder so that it's accessible across devices

alias sy2ba="cp ~/Sync/.bash_aliases ~/" # replace the current iteration of my aliases w/ the synced version from my syncthing folder

alias mba='micro .bash_aliases' # open my aliases file in the modernized version of 'nano'

alias reload="source ~/.bashrc" # Quickly refresh my system so that the latest alias file is loaded

alias l='exa --group-directories-first -hlras modified --no-user --icons' # exa is a prettier version of ls. Options toggled: Human-readable, long format, reverse output, show hidden files/folders, sort by modified, hide the 'user' column since I'm the only one that uses the computer, and show the icons to make it look fancy```

Replaced Commands

alias cat='batcat --theme=ansi ' # Replace generic output of cat w/ a formatted version. This is bat (batcat in Debian)

alias rm='trash ' # Instead of auto-deleting files, put them in the 'trash' bin for 30 days, then delete.

Server & Docker-related

alias lazy='/home/macallik/.local/bin/lazydocker' # Run Docker

alias pad='ssh MyPad20334' # shorthand to ssh into my server

RaivoKulli,

I wonder if you can be a madlad and symlink your bash-aliases to a synced file.

tvcvt,

Not a symlink, but you can add source /path/to/aliases one your bashrc file to load them from another file. I do that and keep all of my dot files in a hit repo.

corytheboyd, (edited ) in CLI tools to quickly find recently opened files by fuzzy search?
@corytheboyd@kbin.social avatar

fzf? https://github.com/junegunn/fzf

Out of the box, would only help searching shell commands that have been run, so for files, things like “vim file.txt”, which is obviously not usually how files are edited (you’d use the file browser in a text editor or IDE)

However if you find a way to list all files on your system by modified time, you can pipe it to fzf for a slick fuzzy find search.

Maybe ag would work here too: https://github.com/ggreer/the_silver_searcher

astraeus, (edited )
@astraeus@programming.dev avatar

I can’t tell you the number of times I have in fact edited files using vim even with a WM and DE. I just treat my laptop like it’s a server I connect directly to now

Oh, or even better how many times I used the terminal in VSC to vim edit something 😂

this_is_router,
@this_is_router@feddit.de avatar

things like “vim file.txt”, which is obviously not usually how files are edited

You what mate? Don’t assume my workflow. “vi file.txt” is obviously superior to clicking inside some texteditor or file browser

fart_pickle, in Linux on a 2in1 for Uni

Hardware wise dell xps 13 2-in-1 is a good choice. However folio is horrible, magnetic stand is way too weak and I still cannot figure out deep sleep/hibernation. Aslo fingerprint scanner doesn’t work.

Another thing is that Linux is not the best choice for a touch device. I’ve tried gnome and kde and they both suck. I’ve also tried plasma mobile and it feels like nearly days of touch screens.

jack, (edited ) in I made it to Linux! What is your must-have FOSS or Free Software for linux?

Install everything as a flatpak, it is the future. Anything else will be outdated or can lead to headache (dependency issues).

Here’s a simple GUI video downloader.

Here are elegant, easy to use apps that cover many different needs.

EDIT: Tell me where I’m wrong

heygooberman, (edited ) in Who uses pure GNOME (no extensions)
@heygooberman@lemmy.today avatar

Have you considered Pop OS from System76? Pop OS has a GNOME-like DE where the dock is fully displayed. It’s very much like the macOS DE. The current stable release uses a GNOME-like DE, and the developers at System76 are working to make it into their own DE called Cosmic.

mfat,

Thanks, yeah I’ve heard good things about Cosmic. I’ll give it a try when it’s available on Fedora.

authed, in GIMP 2.10.36 Released with Support for ASE + ACB Palettes, New Gradient, and More

What happened to gimp 2.99

PropaGandalf, (edited ) in Linux on a 2in1 for Uni

I’m using a Dell Inspiron 2in1 and from the linux side everything runs great. In the three years I have this laptop I tried multiple distros and all worked fine. Besides that the biggest problem was to find a program to make handwritten notes. I really recommend Rnote as it has matured very well over this year and is the only option if you need an infinite canvas to draw on.

I can’t recommend you the hardware tho as it is really aweful. The trackpad gets stuck sometimes and does not come back up with the keyboard showing the same symptoms now, the aluminum chassis gets greasy really fast and the hinges aren’t the best either. Also you must use the cheapest version of all Dell pens because the screen is only compatible with that one pen.

lauha, in Who uses pure GNOME (no extensions)

What do you mean a lack of dock? Gnome indeed has a dock by default where has you need an extension on kde to have a dock.

bingbong,

I don’t think I installed any extensions to get a dock on kde, unless debian came with the extension preinstalled

lauha,

Are you talking about a panel or a dock?

bingbong,

It was a panel that mimics a dock. I can’t remember if it was the existing task bar with modified settings or another panel that can be chosen. However, it’s so customizable that I got it to mimic the macOS dock almost perfectly without downloading anything else IIRC.

mfat,

The dock is hidden by default, only visible in the overview mode.

  • All
  • Subscribed
  • Moderated
  • Favorites
  • linux@lemmy.ml
  • localhost
  • All magazines
  • Loading…
    Loading the web debug toolbar…
    Attempt #