There have been multiple accounts created with the sole purpose of posting advertisement posts or replies containing unsolicited advertising.

Accounts which solely post advertisements, or persistently post them may be terminated.

linux

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

dannyboy5498 , in Distro suggestions

I’ve been using RebornOS, which is an arch based distro. I think it fits what you want perfectly. It’s a rolling release and has heaps of customisability and nothing is forced on you.

flashgnash , in Fuck nvidia.

services.xserver.videoDrivers = [“nvidia”]; go brrr

BuboScandiacus , in Fedora or Pop!_OS?

If you don’t mind the Red Hat shit, Fedora.

garam ,
@garam@lemmy.my.id avatar

Fedora

FEDORA

GREAT FEDORA

Glorious EGG ROLL

samsy , in What Filesystem?

For what? Client on a laptop or PC? Why not f2fs? On a server just trust good ol ext4 with some flash drive settings.

cianmor OP ,

it would be for a PC and normal work/home use

samsy ,

My current setup is fedora for the last 6 months. I started a live session, installed f2fs and then run the installer with a combination of f2fs + encryption. And it runs flawlessly and faster than any setup before.

52fighters , in Distro suggestions
@52fighters@kbin.social avatar

I like Solus. Rolling, stable, independent.

Presi300 ,
@Presi300@lemmy.world avatar

Solus, Rolling, stable, dead… soon to be hopefully revived

52fighters ,
@52fighters@kbin.social avatar

It never went away. A new ISO is out too! Give it a try.

Dotdev , in Distro for ideapad
@Dotdev@programming.dev avatar

Gallium is only for chromebooks. For this i would recommend lmde or mx linux.There is wine for running windows program.Just check the wine index for apps which you would run.

krizste OP , (edited )

I see. Edit: i was worried about wine not working for csp . which seems to be true(?). but it seems using playonlinux works.

Dotdev ,
@Dotdev@programming.dev avatar

Playonlinux usually has patches to make things work.

Titou , in Fedora or Pop!_OS?

Pop!_OS because of recent Red Hat controversie

PurpleTriffid , in Distro suggestions

Another Debian Testing user here, I’ve been running it for I-can’t-remember-how-long and genuinely can’t recall the last time there was a showstopper. My use case is very standard though, no gaming or running servers or heavy development. Recently rolled up to Trixie with no issues whatsoever

fhein , in Coders, what is your workflow on Linux

Like many others I also use NeoVim, but it was quite a bit of learning curve before you get comfortable with it. And you really have to go all in and learn at least the basics, if you try to use it like a normal text editor thinking you’ll learn commands as you go along then you’re going to hate it.

In addition to having to learn how to use vim, you also need a good configuration and probably some plugins if you want to use it as an IDE. Personally I use fzf, coc, vim-dirvish, lightline, lightline-bufferline and papercolor-theme.

Croquette OP ,

How long did it take you to get comfortable with NeoVim? I like the proposition of the vi/vim approach of no mouse. But it is really intimidating to get into.

bionicjoey ,

Run the command vimtutor in your terminal

fhein ,

I guess a few hours until I had memorised basic stuff like moving around, copy-paste, etc. Then maybe a week or two before I really felt comfortable with it. There’s some point where you actually understand vim and start using it more like a programming language and less like a traditional text editor. For example I love the “repeat last command” (default bound to . key), but to use it effectively you need to create a command that will be usable everywhere you want it to, and there are many different commands that do the same thing.

Here’s a random example:

Let’s say you have the following text in a document you’re editing with vim, and you want to delete the word “dance”. Vim is currently in normal mode, and with the cursor placed on the highlighted “c”:

Monkey dance party

If your brain is still in Notepad.exe mode, you might achieve this by pressing “i” to go into insert mode and using a combination of backspace and delete to edit the line.

A vim beginner might know that “x” and “X” in normal mode works like delete and backspace, without going to insert mode, so “XXXxx” does the same.

Someone who has learned basic movement could instead solve this by combining two commands, first “b” to move the cursor back to the beginning of the word, followed by “dw” (delete to next word).

But there’s also a single command that deletes the current word, regardless of where the cursor is in it, which is “daw”. And since this is a single command, you can repeat it with the “.” key to delete a different word.

Now here comes the vim magic: If you instead want to replace the word “dance” with “pool” you just modify the above commands by replacing “d” (delete) with “c” (change). So in our example you could type “caw” in normal mode, which deletes the word under the cursor and places you in insert mode. There you write “pool” and press Escape to go back to normal mode. Now you have a single command that replaces any word under the cursor with the word pool, which you can repeat anywhere you like.

And if it’s not just the current word you want to change, then replace the “w” in the command with something else, for example “ca)” will change a pair of parenthesis and everything inside them, which is very useful when programming C/C++/etc… And if you have nested parentheses and want do something with two levels at the same time, the command becomes “c2a)” which might look complicated, but it’s basically just simple rules that you string together.

vim-adventures.com might be a fun way to get started, then look up some nice vim cheat sheet and keep that nearby. I would also recommend looking up some example vim configs, because the editor is very bare bones with the defaults. I like relative line numbers for easy jumping between lines, so give that a try.

When you’ve mastered (?) vim you’ll also see less (the program) keyboard shortcuts make a lot more sense. You can also change your shell to vi mode for faster editing of commands.

Croquette OP ,

I will look into vim adventures. Trying to learn Vim at the same time as learning everything else is hard. So hopefully, a Vim game will be more palatable.

thepiguy , in Coders, what is your workflow on Linux

Tmux + nvim for editing code and bspwm for a fully keyboard only workflow. I have some keybinds in tmux to open a new pane and run cargo or whatever command is necessary to run the code.

Croquette OP ,

How long have you been using nvim/vim in general?

I have to use vi/vim from time to time for basic editing (like on petalinux for example), but it is quite intimidating to get into. I’m already over my head right now, so adding a new learning curve might not be the best timing.

JoeyJoeJoeJr ,

I had to use vi for work (only editor installed on the servers), and it snowballed and now I can barely type in anything that doesn’t have vim bindings.

The first few days were pretty rough, but I learned the absolute minimal basics, and then just organically learned features as I needed them/whenever I felt like what I was doing was tedious, and there had to be a better way. It’s been about 10 years, and I’m still learning!

One small suggestion, check YouTube for videos of people showing off vim features, e.g. youtu.be/5r6yzFEXajQ. You won’t remember everything from one watch, but it’ll help you see what is possible/how powerful vim is, which can guide your “this is so painful how do I make this better” searches down the line.

PipedLinkBot ,

Here is an alternative Piped link(s): piped.video/5r6yzFEXajQ

Piped is a privacy-respecting open-source alternative frontend to YouTube.

I’m open-source, check me out at GitHub.

Croquette OP ,

Someone suggested vim adventures to learn vim so I will look into that for sure. I really like the proposition of the Vim.l workflow, but I need to set time aside right now that I don’t have. But once my project is started properly, I will definitely dive into Vim

Sizably8826 , in Distro suggestions

My go to is always linux mint. It always work every time I install.

hare_ware , in My little brother loves the dualboot setup I installed for him. He says "It's like iOS"

He also keeps explaining to me why Fedora better than my “nerd OS”

Complaining about what works for other people? It is tradition. It’s innate Linux user behavior.

peppy ,

He’s learning

bear ,

The children yearn for the distro wars

cybersandwich ,

one of us! one of us!

Scubus ,

I came to this thread to conplain about IOS, so I guess that checks out.

bushvin , in Distro for ideapad

Welcome to the wonderful Linux world!

I do not know Gallium, so I have very little to say about that.

Windows software can be run using Wine. It is a Windows emulator, and there is no guarantee it will work with CSP. Alternatively you could check for alternatives that run natively on Linux (Gallium). Krita? Inkscape?

Make no mistake, your journey into Linux will be riddled with obstacles, as it is not close to Windows at all. Inform yourself, learn, ask questions. But most of all: have fun!

krizste OP ,

I have dabbled with krita/Inkscape/gimp, so if I can’t force CSP to work than I’m fine to use em, though I’d like to keep using it.

-im very aware about linux haha! I’ve floated around it /it’s floated around me for years 'n years but I’ve never touched it myself.

privsecfoss , in My little brother loves the dualboot setup I installed for him. He says "It's like iOS"
@privsecfoss@feddit.dk avatar

I have used Linux for a while and transitioned the wife and kids to Linux Mint a couple years ago.

They know it is different than Windows but never miss anything as the alternatives are as good or better. The kids are used to mobile and tablets so know of app store and so on. The only downside is getting some games their friends play working, like Roblox. But for the most part alternatives like Minetest are fine (better).

The upside is IMHO massive in terms of privacy, security, user friendless and sysadm stuff.

It just works and we’re happy with it!

ono , in KDE : Where bugfixes and new features come from

I was confused because there was no article visible at that link. Then I noticed you included the part that skips the article and jumps straight to the comments, and scrolled up to find it. Here’s the corrected link: pointieststick.com/…/where-bugfixes-and-new-featu…

  • All
  • Subscribed
  • Moderated
  • Favorites
  • [email protected]
  • random
  • lifeLocal
  • goranko
  • All magazines