this post was submitted on 18 Aug 2024
34 points (94.7% liked)

Linux

5083 readers
145 users here now

A community for everything relating to the linux operating system

Also check out !linux_memes@programming.dev

Original icon base courtesy of lewing@isc.tamu.edu and The GIMP

founded 1 year ago
MODERATORS
top 12 comments
sorted by: hot top controversial new old
[–] boredsquirrel 6 points 2 months ago (3 children)

Anyone got a good working Linux Tablet?

[–] schizo@forum.uncomfortable.business 7 points 2 months ago (1 children)

Define good?

I've got an older Surface Pro running Fedora and the install was a little annoying to get everything working, but like, it's perfectly fine for tablet-y things as long as you realize that there's really really not a good tablet UI or apps that have good tablet UIs on Linux.

I went with MAKE UI BIGGERERER as the tablet UI option and it's sufficient.

[–] communism@lemmy.ml 1 points 2 months ago (1 children)

Have you ever tried a stylus with it? I've never tried using a stylus on Linux but I'm curious about it

I don't have the stylus, sorry. That got lost years ago on a trip and I never used it enough to justify replacing it (this was before I moved to Linux on it).

[–] recursive_recursion@programming.dev 2 points 1 month ago* (last edited 1 month ago)

There's the MinisForum V3

  • I'm unsure about the long term reliability as MinisForum hasn't stated anything in terms of Linux support (plus see all the cons in the thread linked above)

if you can, I'd suggest waiting a year as more likely than not we'll see more mainstream companies offering a tablet with explicitly stated Linux support

[–] LucidBoi@lemmy.dbzer0.com 4 points 2 months ago (3 children)

I'm using "find . -name '*-FLAIR' -type d -ls -exec cp -lr -t ../../../media_links/ {} ; | grep 'Aug 18'" to make hardlinks for directories created on a certain date. However, I always get an error saying that it can't create hardlinks for a folder that doesn't even match the find criteria, while it works for the folders that I wanted. So, everything works, but I just wanna know why I'm getting that error. Any help? lmk if u need more info

[–] Max_P@lemmy.max-p.me 4 points 2 months ago (1 children)

Your grep is getting the output of find piped into it, so there's nothing in the find command itself (which has the -exec in there) to filter it down so it applies to everything find finds. You're filtering for 'Aug 18' after find has already -exec the cp -ltr command.

You probably want this:

find . -name '*-FLAIR' -name '*Aug 18*' -type d -ls -exec cp -lr -t ../../../media_links/ {} \;
[–] LucidBoi@lemmy.dbzer0.com 1 points 2 months ago

Oh the files don't have the date in their names. Is -name still gonna work with 'Aug 18'? I'm parsing for the date shown by -ls.

[–] rrconkle@lemmy.zip 3 points 2 months ago

Try swapping the positions of -name ‘*-FLAIR’ and -type d

[–] anzo@programming.dev 1 points 2 months ago (1 children)

Perhaps you need to use -ctime parameter on find command.

[–] LucidBoi@lemmy.dbzer0.com 1 points 2 months ago

That might be a lifesaver! I'll try it today. I also see there's a -cmin parameter which lets me be even more specific. Thanks