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.

blacpythoz , in What's your opinion about Manjaro?

I don’t know. I don’t feel right if not arch like something missing

atomkarinca , in Considering switching over to Linux. My main concerns are with Music Production (Native Instruments, Bitwig, Arturia etc.)

I might sound like an old fart but here’s my 2 cents.

I was exactly in the same situation in 2005. I was heavily invested in commercial products but I wanted to switch to an all open source workflow. My advice would be to start small. First dual boot with windows. Get your DAW working at a basic level. Then get your hardware setup the way you are fully comfortable. Then try to get your visual instruments to work.

Keep in mind that it will be a somewhat different workflow. Linux is highly modular. You can definitely achieve the same results but sometimes with more tools. Jack is an amazing sound system which is now seamlessly integrated into the system with Pipewire. It makes routing your audio stupidly simple and opens up a whole different universe of possibilities.

All this is coming from someone that’s using an all open source approach for almost 20 years now.

And if it does’t work, it doesn’t. No need to swim against the current.

Scraft161 , in VM solution with "seamless" features
@Scraft161@iusearchlinux.fyi avatar

Look into X11 forwarding if the guest uses X11 (xwayland will happily play along if you use waykand on the host) or try something like way pipe if you want a full Wayland solution. Both will display an app over network as if it was running locally, but they do require a bit of setup with ssh.

You may also be able to trick RDP into displaying one app remotely like winapps does if you don’t want to deal with ssh.

socphoenix ,

That won’t work for forwarding from a windows vm

kikuchiyo , in looks like 2023 is finally the year!
@kikuchiyo@lemmy.ml avatar

I wonder if Steam Deck is helping with that number (but I don’t know if that many of them were sold to make that much impact).

ultranaut ,

I tried to look it up and they may haveeither sold about 3 million already or are projected to have sold around that many by the end of the year.

kikuchiyo ,
@kikuchiyo@lemmy.ml avatar

That’s huge number for sure! I think what Steam is doing to make playing games on Linux easier is a big factor too.

MonorailPanda ,

I’ve trying to move my main desktop over to Linux for years, and getting a Steam Deck was the last thing to convince me. It’s been about 8 months now and I won’t got back to Windows.

The only exception is the few Forza games I “own” on the Microsoft store, but that’s around every other month at best. Really hope the popularity of the Stream Deck can get support for them.

garam , in why did you switch?
@garam@lemmy.my.id avatar

I need tools that powerful and less memory hungry on old device, especially thinkpad, WSL2 with Windows kills the HW, so in the end I ends up using fedora… because it’s near EL standard (I work with Red Hat Enterprise Linux), and it’s useful to be near the workflow I need.

Linux KVM with Windows better than WSL2 on Windows… so… I use Linux in the end… and never looks back…

blacpythoz , in What distro(s) do you use?

Arch

Adderbox76 , in why did you switch?

For me it was hardware ethics.

Spending thousands every couple of years because a marketing department tells you your old device is suddenly shit just doesn’t sit well with me.

I’ve used the same $400 dollar phone for three years now, keeping it updated with lineageOS. And I’ve kept my trusty 6 year old editing desktop relatively capable with routine part upgrades and Linux.

Our entire economic system is based on making people buy new shit as often as possible, and that’s so ridiculously unsustainable it’s insane most people just put up with it so long as they can keep their nose down watching tiktok.

Tenniswaffles ,

While I agree that marketing trying to sell you upgrades you don’t need is dumb and annoying, it’s a pretty poor argument unless you have absolutely no willpower or something and can’t stop yourself from buying new things just because it been advertised to you.

xoggy , in why did you switch?
@xoggy@programming.dev avatar

I switched because Windows XP reached end of life and I had no interest in Vista. I was also pretty familiar with Gnome 2 and XFCE, both of which provided a very similar desktop experience to XP but way more customizable.

Ascend-910 , in why did you switch?
@Ascend-910@kbin.social avatar

I switch to Kubuntu in 2020 because Microsoft discontinued Windows 7. Then I switch to Debian to learn more about how Linux work, and after that I moved to Siduction to get the up-to-date packages. I still rice KDE to look like Windows 7 to this day :P

Ascend-910 , in why did you switch?
@Ascend-910@kbin.social avatar

I switch to Kubuntu in 2020 because Microsoft discontinued Windows 7. Then I switch to Debian to learn more about how Linux work, and after that I moved to Siduction to get the up-to-date packages. I still rice KDE to look like Windows 7 to this day :P

Kata1yst , (edited ) in Are there any good Blu-ray ripping software for Linux?
@Kata1yst@kbin.social avatar

You can link the makeMKV libs to handbrake so it's a one step process disk -> compressed form.

#!/bin/bash

# Intention: replace aacs decoding with makemkv's superior libmmbd programatically

# elevate privilages to sudo
[ "$UID" -eq 0 ] || exec sudo bash "$0" "$@"

# test if libmmbd is installed already, exit otherwise
libmmbdpath=$(find /usr -name libmmbd.so.0)
echo "libmmbd path is $libmmbdpath"
if [[ ! $libmmbdpath == *"/lib/"* ]]; then
    echo "libmmbd not found, please install makemkv first"
    exit 0
fi

# test if libaacs is installed already, set desired path otherwise
libaacspath=$(find /usr -name libaacs.so.0)
echo "libaacs path is $libaacspath"
if [[ ! $libaacspath == *"/lib/"* ]]; then
    libaacspath="/usr/lib/libaacs.so.0"
else
    echo "libaacs found, you must uninstall libaacs"
    exit 0
fi

# test if libbdplus is installed already, set desired path otherwise
libbdpluspath=$(find /usr -name libbdplus.so.0)
echo "libbdplus path is $libbdpluspath"
if [[ ! $libbdpluspath == *"/lib/"* ]]; then
    libbdpluspath="/usr/lib/libbdplus.so.0"
else
    echo "libbdplus found, you must uninstall libbdplus"
    exit 0
fi

# if we made it here, it's time to take action

# softlink mmbd to aacs
ln -s $libmmbdpath $libaacspath

# softlink mmbd to bdplus
ln -s $libmmbdpath $libbdpluspath

echo "successfully set up libmmbd as the system decrypter"
exit 0

vaseline ,

I don’t know whether this is brilliance or madness

EveryMuffinIsNowEncrypted OP ,
@EveryMuffinIsNowEncrypted@lemmy.blahaj.zone avatar

Yes.

Steam-Roller ,

Hats off to you good sir bows

EveryMuffinIsNowEncrypted OP ,
@EveryMuffinIsNowEncrypted@lemmy.blahaj.zone avatar

I apologize. As grateful as I am that you took the time to write all this out, I must admit I am still very much a Linux noob and so all this is way beyond my abilities. :/

entropicdrift ,
@entropicdrift@lemmy.sdf.org avatar

You copy that whole thing into a terminal after you have both makeMKV and Handbrake installed, then press enter

IsoKiero ,

While in this case it is the solution (and Kata1yst really seems to know what they’re talking about), I feel like there’s a need to remind people every now and then to be careful with shell scripts. There’s loads of instructions on the internet where they suggest just to pull random script from the internet and pass it trough as is to run with root privileges. When you do something like ‘curl stackoverflow…|bash -’ it’s quite literally the same than letting a random guy from the street to your computer and let them do whatever they want with it.

entropicdrift ,
@entropicdrift@lemmy.sdf.org avatar

Yeah, that’s totally fair. My prior comment was about that exact script, which you and I can both see isn’t malicious, but OP can’t since they don’t know how to read it yet.

It’s good to point this out. No matter how often reminders are written people still will go and download and run random programs without vetting them. Frankly, I blame how software is distributed for Windows for this general acceptance of blind faith in other peoples’ code without a trusted third party like e.g. the Debian maintainers validating that it works as intended.

30021190 ,

You could check the files you don’t need to see if they’re a symlink, otherwise your script would crash out if it’s already completed.

wallmenis ,

Bro answers with a complete bash script just for this dude’s conveniance! Hats off to you sir!

gravitas_deficiency ,

This is the kind of community atmosphere I’m here for <3

pensivepangolin ,

Oh my god I can’t even tell you how much I love you for posting this!

This is a question I had oh….a decade, I think?….ago and gave up on! Glad there are people smarter than I am out there!

csolisr ,

Is there some legal reason why AACS and BDPlus can’t use the same decoding strategies as MMBD?

nadiaraven , in why did you switch?

I switched because there’s nothing I can do on windows that I can’t do on Linux. Granted, it can take some legwork and reading tutorials to get certain games running on linux. But I just feel more in control of my stuff on Linux.

As a beginner, I really suggest you make the move to Linux as easy as possible for yourself. It’s more likely to be a pleasant experience, and thus a long term one. Try something easy like Linux mint. Once you get used to that, you can start distro hopping.

megane_kun , in why did you switch?

When my last PC‌ died around 2019, I had to use a spare, hand-me-down laptop that could barely run windows 7. I was already exposed to Linux back then, and that I was counting on its reputation to run on a potato. I installed Ubuntu (kind of a bad choice, perhaps) on that ancient laptop and it ran surprisingly well! I didn’t look back at that point, even after that laptop died (of old age) and I got a new PC.

MxM111 ,

Why Ubuntu is considered a bad choice?

megane_kun ,

Well, it wasn’t the best choice on laptop that is already quite old and underpowered. I didn’t know back then, but there are lightweight Linux distros that would have served me better.

The laptop only had 4GB of RAM. I forgot about its processor, but it was decent for 2007. Even then, it was able to run, without much trouble, so long as you don’t do much. Watch the CPU and memory usage and it’s mostly ok.

xsoulp , in Solidworks and other industry-class CAD software on linux

I only use onshape. It’s all web based so it works with any OS.

astropenguin5 OP ,

I’ve heard mostly good things about onshape besides assemblies being weird. Haven’t tried it out yet but I also have ~4 years experience in Solidworks already from using it for robotics club in HS and like it well

eshep , in Plan on getting a Linux laptop: any suggestions?

@PurrJPro You can't go wrong with @tuxedocomputers but it's gonna be hard to stay under 1000USD. Everything they have runs beautifully with linux and their support is far better than you'll find anywhere else. I've bought more laptops over the past 20 years than anyone probably should, and finally going with was worth the little extra I spent on it.

If you want to just buy some cheap laptop off the shelf, that's okay too, just do your homework first. Find out what hardware that exact part/model number has in it so you can know what sort of problems you may be dealing with later. I've bought at least 2 different models each of Sony, DELL, Acer, ASUS, HP, IBM, Lenovo, Apple, Compaq, 5~6 different off-brands I can't remember. Some work great with no hassle at all, some take loads of fiddling, and some have hardware that just doesn't work at all.

PurrJPro OP ,

Tuxedo’s laptops r enticing from their sleek look alone, and their Linux support is enticing. If I’m ever in a spot to buy from them, I definitely will! As for cheap laptops, I’m heavily leaning towards a ThinkPad, although I’ll probably look at what other vendors offer Linux compatibility and how good it is. Thank you!

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