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.

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!

moth , in Solidworks and other industry-class CAD software on linux
@moth@pawb.social avatar

I’m in the same spot. Ended up just buying a cheap SSD and dual booting with windows 10. It’s definitely not as convenient as it could be, but it works perfectly.

astropenguin5 OP ,

Yeah my main PC is dual-booted Linux mint and Windows 10, I used Windows more over time both because gaming is slightly easier but also the way my dad set it up there were time controls on Linux and not on windows so as soon as I figured out or was given the windows password it all went downhill.

I want to get back into using Linux more but I’m worried it won’t be until after college

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

Check out traction

www.tracktion.com

Nucelar , in SUSE plan on forking RHEL and make a RHEL compatible distro available for everyone

And another one...
https://lemmy.ml/post/1956845

Nucelar ,

That said gives such a confidence on their promises that they have to add this statement at the end

"Forward-Looking Statements

Any statements in this press release about future expectations, plans and prospects for the company, including statements containing the words “aims,” “targets,” “will,” “believes,” “anticipates,” “plans,” “expects,” and similar expressions, may constitute forward-looking statements and should be read with caution. Actual results may differ materially from those indicated by such forward-looking statements as a result of various important factors, including competitive landscape, development of customer deals, reliance upon customer relationships, management of growth and acquisitions, the possibility of undetected software issues, the risks of impacts of the Covid-19 pandemic and economic downturns, pricing pressures and the viability of the Internet. In addition, any forward-looking statements included herein represent views as of the date of this press release and these views could change. The Company does not have any obligation to update its forward-looking statements. These forward-looking statements are subject to change and should not be relied upon as representing the Company’s views as of any date other than the date of this press release"

Lol Ok suse we trust you bro

deliux ,

Hmm i hope, especially with them mentioning cov19, that this is only the standard boilerplate legal defense stuff. It would make sense to not have the whole company going down if this side project fails

They do have exactly the same on their other news posts.

captain_samuel_brady ,

I really have no idea whether Suse is trustworthy here, but that kind of boilerplate seems common for publicly traded companies.

statue_smudge , in Nomenclature: CPU Core/Threads vs Kernel Threads - how do you avoid ambiguity?

I usually call the CPU cores physical cores and logical cores. So a CPU might have 6 physical cores and 12 logical cores. Meaning that it has 6 real cores, but it shows up as 12 because of hyper threading.

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