linux

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

floofloof, (edited ) in Yubikey on Linux?

I use my Yubikeys all the time in OpenSUSE Tumbleweed and Linux Mint - a Yubikey 5 NFC and a Yubikey 5C NFC (mostly with Firefox). I have never had any problems with them. Mint is Ubuntu-based so they ought to work in Ubuntu. Sorry I can’t advise you on why yours isn’t working, but it should definitely be possible to get it working.

WeAreAllOne,

Tumbleweed user here. Thinking of buying a yubikey; is it easy to setup for logins etc or does it involve terminal commands etc. I mean is there a repository app?

floofloof,

I’m afraid I can’t remember how I did it, it was some time ago on a machine I no longer have. There is some advice here:

…yubico.com/…/360016649039-Installing-Yubico-Soft…

There’s an appimage for their manager app there. You might also try using Distrobox to give yourself access to a distro that uses apt, and then add Yubico’s PPA and install the software from there. I don’t know whether it would work but in principle it should.

PINKeHamton, in best foss cad software?

I’m a music lover so im a bit bias but I think its the gnomes projects lollipop its a gtk (go figure) music playet

mariusafa,

Funny response ngl.

avidamoeba, (edited ) in I'm an idiot (arm)
@avidamoeba@lemmy.ca avatar

As a last resort you could install docker from apt, build an image from a distro has rar in its arm repos, then run containers ephemerallly, mounting your work dir into the container where rar runs. Try the suggested methods of getting a binary first. 😅


<span style="color:#323232;">docker run --rm -v /your/work/dir:/destination/in/container your_image rar ...
</span>
harsh3466,

Haha. Definitely last resort. Having learned what a pain rar is due to its propriety nature, I’m going to see if they care if I convert them to tar or zip first.

avidamoeba,
@avidamoeba@lemmy.ca avatar

Yup, moving away from rar would probably be best.

model_tar_gz, in What are some interesting devices powered by Linux?

Hate them or love them, Teslas are run on Linux.

github.com/teslamotors/linux

Certainity45,

Last commit was more than 5 years ago…

model_tar_gz,

Apparently most of their code is not open source.

taaz, in Trouble with Handbrake, PopOS and Accelerated AV1

Does handbrake use ffmpeg under the hood? If yes you might want to have a look if ffmpeg can see/use the hwenc.

xyguy,

I’ll check the ffmpeg settings. Thanks.

cybersandwich, in Trouble with Handbrake, PopOS and Accelerated AV1

Are you using the amdgpu ?

xyguy,

I am yes.

rektangel, in best foss cad software?

I like to use openSCAD which uses code to describe objects so it’s probably not for everyone.

Peffse,

I find it pretty easy to use when building my 3d print adapters, brackets, containers and very simple objects. But if, like me, spaghetti code is your natural language… OpenSCAD does you no favors.

nilloc, (edited )

OpenJSSCAD helps with the spaghetti code, unless you also write JS spaghetti, but I only use it for creating tools I want non-tech people to use.

It lets you make parameters editable from a web based UI of your liking with the model code hidden away, and can output decent meshes.

mranderson17, (edited )

AFAIK openSCAD is a code driven mesh format. So if you want to import openSCAD models into any other CAD software you have to convert the mesh to STEP or some other actual 3d object format during which there can be lots of error if the model is complex. I don’t have a lot of experience doing this but I just tried a model I had lying around from the dactyl keyboard project and converting it resulted in a lot of really broken surfaces.

This is a cool alternative that makes 3d objects instead of meshes (at least it says it does). zalo.github.io/CascadeStudio/ . Also open source but web based.

EDIT: I should mention that CascadeStudio seems to be abandoned, just a cool concept of a different way of doing code driven CAD.

lupec, in [SOLVED] How to customize dead keys under Wayland / Electron apps?

My situation is remarkably similar to yours down to the language, and I happen to have been considering a US keyboard as well so that’s disheartening to hear. I have nothing to add right now but will let you know if I come across anything helpful!

pathief, (edited )
@pathief@lemmy.world avatar

I love US keyboards for coding, it really improves the experience. Typing in portuguese, however, is not a good experience. The default american layout has the ~ key in a really bad spot. Typing à or ã is REALLY uncomfortable/weird. Fortunately, my keyboard has that key on the right side of the keyboard instead of the left, which greatly improves the experience.

The .XCompose file I linked in the main post is perfect and works great on X11. If you’re not yet on Wayland you can use it and have a great experience.

lupec,

Right, that all makes sense. I’ll definitely keep that .XCompose file in mind, wasn’t aware it even was a thing before your post. Also, do you mind sharing the specific keyboard you’re using for reference?

Side note, I’ve started using vim/helix a few months ago and the pt layout makes things a lot more awkward than I expected, that’s half the reason I’m considering a US keyboard lol

pathief,
@pathief@lemmy.world avatar

I’m using an Happy Hacking Keyboard Professional 2. Not most people’s cup of tea but I’ve grown used to it and it’s hard for me to swap to anything else now :P

lupec,

I can see why it’d be divisive with topre keys, no key markings and a pretty non standard layout but man does it look nice. Really appreciate what they’re going for there.

Anyway, thanks and hope you find a solution, I’ll drop by if I come across anything useful!

jntesteves, (edited ) in [SOLVED] How to customize dead keys under Wayland / Electron apps?
@jntesteves@lemmy.world avatar

I’m using GNOME Wayland on Fedora 39 and I don’t have the problem you describe. I just go to settings and select my keyboard layouts:

  • English (US, intl., with dead keys)
  • English (intl., with AltGr dead keys)

And everything just works. I specially like the second one because it doesn’t interfere with keybindings in games, which can be a problem in GNOME Wayland.

Oh, I think I get the issue you’re having, you can’t find the Çç character on the Linux layout 😅 I always have to explain this to people migrating from Windows, it’s AltGr+, (right Alt key plus Comma). I like this shortcut better than the Windows layout, but I understand some people might not like it. Unfortunately, I can’t answer your question, as I too don’t know how to customize the keyboard layout. I just got used to the Linux layout.

pathief, (edited )
@pathief@lemmy.world avatar

Yes, I’m using the US international with dead keys layout. I also used it in Microsoft Windows. Here’s a couple of annoying examples:

  • + c-> result: ć; expectation: ç
  • + m -> result: ḿ; expectation: 'm (particularly annoying when typing in english; workaround: + space key + m)
  • + t -> result: nothing happens; expectation: 't (particularly annoying when typing in english; workaround: + space key + t)

Right Alt + Comma does work for ç so at least I have that going for me. It’s still weird to have a different layout for electron apps :/

jntesteves, (edited )
@jntesteves@lemmy.world avatar

You should be able to type ç the way I described for all apps, so you could just remove your custom layout. I highly recommend the English (intl., with AltGr dead keys) layout, it’s perfect for coding and writing in English. It’s a bit more work to write in Portuguese, though, so it took me a while to get used to it, but it’s worth it if coding is what you’re doing most of the time. In this layout, you must hold AltGr to get the dead keys, otherwise it’s a normal English layout.

You can also use two layouts — one for English/coding, one for Portuguese — and the keyboard shortcut Super+Space to switch between them. I always have two layouts setup like this, but I never switch anymore because I just learned to love the English (intl., with AltGr dead keys) layout — and I don’t write much Portuguese nowadays.

pathief,
@pathief@lemmy.world avatar

Thank you! It’s not exactly what I wanted but at this point I’m just happy to have a solid workaround to my problem that works everywhere.

mobius_slip, in linux mint became super slow

Was this on a laptop? My Thinkpad running Mint slows down a lot when it’s charging, but as soon as I unplug it, it’s fine.

jackpot,
@jackpot@lemmy.ml avatar

that seems like a bug?

bitwolf, in I'm an idiot (arm)

Can 7zip unrar? That’s my go-to form anything compression.

Fisch,
@Fisch@lemmy.ml avatar

Yes, it can

Atemu,
@Atemu@lemmy.ml avatar

Only with the unfree unrar plugin.

harsh3466,

Unrar isn’t the problem though. I’ve already installled unrar to read the file in the rar I need to modify.

What I was looking for is rar so that I can modify the text in the file and update the rar archive.

synapse1278, in best foss cad software?
@synapse1278@lemmy.world avatar

I have tried openSCAD and FreeCAD, they are both good in their own right, but utimatly they also both have very steep learning curves. I suppose Blender can also be used for CAD but I have no experience with it. I just want to quickly design some parts for 3D printing as a hobby and don’t feel like spending hundreds of hours learning those tools. I am current using Onshape.com, it works well on Linux/Firefox, suits my needs and free to use with some limitations. But it is proprietary :(

k4j8,

Came here to suggest Onshape. It spoiled me for all other CAD software. (But it is web-based and proprietary.)

AI_toothbrush, in I'm an idiot (arm)

Im an idiot(leg) /s

harsh3466,

Hahahaha

SheeEttin, in Remmina not working with Windows 10 RDP anymore

What’s in the log on the Windows side?

BentiGorlich,
@BentiGorlich@gehirneimer.de avatar

Where can I find them? I honestly didn't think of that 😅

SheeEttin,

Event log, probably application and security logs. I think there’s a separate RDP log in the event viewer tree too, but I’m not sure if it’s used.

adamnejm, in Clipboard randomly clearing
@adamnejm@programming.dev avatar

Clipboard in Linux is weird. Can you replicate this:

  1. Copy text
  2. Close the application you copied from
  3. Paste into a different application
  4. Nothing appears

If so, that means you don’t have a clipboard manager running, default for KDE is Klipper I believe.

UnRelatedBurner,

step 4 didn’t happen. AKA it works now. I have a guess as of why a random app wouldn’t be running. And it makes sense that closing would clear it, as screenshotting opens a fullscreen app. But I don’t get it, how can closing an application delete my clipboard?

somethingsomethingidk,

This explains it. Especially the section about selections. A program “owns” the “clipboard” and if it stops it is released. Aka bye bye copied data

UnRelatedBurner,

Got around to reading it, good to know. Thanks!

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