linux

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

AlijahTheMediocre, in NVK reaches Vulkan 1.0 conformance

How far back will the NVK driver support?

Chewy7324, (edited )

What hardware does NVK support?

We currently support Turing (RTX 20XX and GTX 16XX) and later GPUs. We plan to eventually support hardware as far back as Kepler (GeForce 600 and 700 series) but those are currently poorly tested at best and missing a few essential features.

www.collabora.com/…/nvk-has-landed.html

netchami, in EndeavourOS Ditches Xfce for KDE Plasma with the Galileo Release

A wise decision.

wmassingham, in Will Linux on Itanium be saved? Absolutely not

Is anyone actually running modern Linux on Itanium? I have never in my life even heard of anyone using those chips. I find it hard to imagine anyone still using them that isn’t running something legacy.

nyan,

It’s still a supported architecture in Gentoo. I expect it will limp along there for as long as there is viable kernel source (current or LTS) and at least one interested maintainer. So if you have an Itanium machine lying around, you can install a current Linux on it. As long as you’re willing to follow a long set of instructions, anyway.

duncesplayed, (edited )

The last chip was manufactured 3.5 years ago and the last serious user was probably several years before that. Obviously no one’s running Itanium with modern hardware.

But just because the hardware isn’t modern, doesn’t mean the software can’t be modern. Tonnes of people run the most recent Linux kernels on 15 year-old laptops, so why not 10 year-old servers? Itanium is only for the hobbyists these days, but so what? Hobbyists have done a good job of ensuring modern Linux can run on 40 year-old 68k. Itanium can theoretically be done, too. It’s just a question of whether the hobbyist community has enough of the right people that can actually maintain it.

fuckwit_mcbumcrumble,

Hobbyists, especially hobbyists in itanium are an incredibly small market share. Their time is much better spent on what people, and most importantly businesses (who pay their bills) use.

thehatfox,
@thehatfox@lemmy.world avatar

It wouldn’t surprise me if there were still a few production Itanium systems in server rooms somewhere, running some obscure or bespoke proprietary software that can’t be migrated to anything else. There are other more arcane systems still being limped along in businesses around the world, for some frighteningly critical applications in some case.

Itanium support being dropped probably has a handful of admins panicking, but in the eyes of the kernel developers it’s a case of “put up or shut up”.

cerement,
@cerement@slrpnk.net avatar

running some obscure or bespoke proprietary software that can’t be migrated to anything else

this is the primary issue – everyone looks at corporations when talking technical debt, but so many medium and small businesses are limping along on so called “enterprise” solutions they were sold a couple decades back and are now completely locked into proprietary formats for which support ended last decade

kale,

I’m a mech E in the medical field. We’re consistently understaffed. If I validate an Excel worksheet in Excel '08 or a Python program in 3.5 with a specific version of NumPy, we’re probably sticking with those versions for a while. Every time I bring up re-validating with the latest version, keeping one old system running the old software requires fewer resources than me or a colleague re-validating.

My whole department is stuck on one version of Python because that was the most recent version when I had an emergency project and developed a data analysis algorithm. We validated it, then as new members were added to my team, they needed a copy, so we had to keep using it. I’ll probably re-validate it to the next Python release. It’s not only unit tests, or we could automate validation. Unit tests are a tiny part of validating software for making medical decisions. And software that directly runs a medical device (like firmware on an insulin pump) is an order of magnitude more rigorous than what I do.

Side note: there are people who somehow root their insulin pumps and run algorithms on them. There’s a group that can get a PID control loop on an insulin pump that has a more simple control scheme on it (because that’s how the FDA approved it). The company has been trying to get approval to use PID control in the US for years.

wmassingham, (edited )

Yeah. I know of ancient AS/400 and slightly less ancient RS/6000 systems still humming along, keeping insurance companies running.

But they probably haven’t seen software updates in decades. Linux 1.0 didn’t even exist when they were new, let alone 6.7.

thehatfox,
@thehatfox@lemmy.world avatar

The AS/400 platform is still alive and actively maintained by IBM so I’m told, although I think it goes under the Power Systems and IBM i brands now. I know several business still using them, with development teams still coding with RPG etc. Apparently there is also reasonable ecosystem of middleware to interface with more modern systems, and some sort of *nix compatibility layer to run more modern software on the platform.

I’ve never touched one myself, but they are keeping a few greybeards I know in steady work.

al177,

Costco still runs stores on AS/400. Ever wonder what those all-text terminals are all over the store?

flashgnash, in Package up and transport a linux?

NixOS and to a lesser extent nix package manager is great for this. Write a config for your entire setup, which will take a long time, but then you can carry that config with you through any and all future machines, and have every one of them setup just the way you like from the beginning

I would highly suggest using NixOS for something like this, however if you don’t want to/can’t the following should apply to pretty much any other distro

Most applications in Linux save their config in ~/. config/ or ~/.configname , if you copy these files and directories over to your new machine all your old settings should persist (this won’t copy applications themselves but will copy their settings for when you reinstall them)

(though be warned this is a messy way to do it if you just copy absolutely everything without thinking, some settings you probably don’t want copied over)

UnRelatedBurner,

tbh, messy way it is, or maybe I’ll clean the data up becore transfer, we’ll see. thx!

ipsirc, in Recommend me a graphical text editor that can deal with multiple workspaces (or lets you specify instance)
@ipsirc@lemmy.ml avatar

They broke that at some point.

Feel free to write a bugreport.

lemmyvore,

I think it was done on purpose.

Anyway… I figured out a workaround in my script. By focusing one of the windows on the current workspace before I open a new tab it seems to make it the preferred window. It’s not foolproof, sometimes it still selects one of the other windows, but it’s close enough.

Here’s the script in case anybody needs it, should work with any editor that has some sort of -tab and -window options if you grep for the correct window name:


<span style="color:#323232;">#!/bin/bash
</span><span style="color:#323232;">WORKSPACE=$(
</span><span style="color:#323232;">	wmctrl -d |
</span><span style="color:#323232;">	grep '*' |
</span><span style="color:#323232;">	awk '{print $1}'
</span><span style="color:#323232;">)
</span><span style="color:#323232;">
</span><span style="color:#323232;">WINID=$(
</span><span style="color:#323232;">	wmctrl -l |
</span><span style="color:#323232;">	grep ' - Mousepad' |
</span><span style="color:#323232;">	grep -E "s${WORKSPACE}s"|
</span><span style="color:#323232;">	tail -1|
</span><span style="color:#323232;">	awk '{print $1}'
</span><span style="color:#323232;">)
</span><span style="color:#323232;">
</span><span style="color:#323232;">if [ -z "$WINID" ]; then
</span><span style="color:#323232;">	exec /usr/bin/mousepad -o window "$@"
</span><span style="color:#323232;">else
</span><span style="color:#323232;">	wmctrl -i -a "$WINID" &amp;&amp; 
</span><span style="color:#323232;">	sleep 0.5 &amp;&amp; 
</span><span style="color:#323232;">	exec /usr/bin/mousepad -o tab "$@"
</span><span style="color:#323232;">fi
</span>
TonyToniToneOfficial, in How do I get rid of excessive password prompts, with the least amount of lost security?
@TonyToniToneOfficial@lemmy.ml avatar

Subbed because I’d like to know, too

sir_reginald, in Will Linux on Itanium be saved? Absolutely not
@sir_reginald@lemmy.world avatar

It seems like NetBSD is working to support Itanium. wiki.netbsd.org/ports/ia64/

torvusbogpod, in would it be illegal to download Ubuntu on a Chromebook?

Uh, you don’t have to work at Google on order to do that. Most Chromebooks can be unlocked to work with Linux with a little bit of work. And you wouldn’t be at risk of going to jail for that. Worst that could happen is you void your warranty. But it’s not a “real crime” or anything like that.

BrikoX, in would it be illegal to download Ubuntu on a Chromebook?
@BrikoX@lemmy.zip avatar

Chromebook’s run on ChromeOS which is Linux based…

01adrianrdgz,
@01adrianrdgz@lemmy.world avatar

I know ChromeOS is Linux but I want Ubuntu, but if I’m honest, I would be ok with only using ChromeOS!!

BrikoX,
@BrikoX@lemmy.zip avatar

Well, then the answer is obvious, no? You can, but there can be some compatibility issues. And changing your operating system is not a criminal offense. As far as Google internal policies, you would have to ask them.

Fisch, in would it be illegal to download Ubuntu on a Chromebook?
@Fisch@lemmy.ml avatar

What about that could possibly be illegal?

01adrianrdgz,
@01adrianrdgz@lemmy.world avatar

breaking the DRM content and breaking the boot, which is illegal in my country :c

be_excellent_to_each_other,
@be_excellent_to_each_other@kbin.social avatar

I don't think anyone is going to come smash down your door because you installed Ubuntu. But I don't know what country you are in and two years ago I wouldn't have believed Iranian police would kill people over wearing a hijab. So I think you should do it, but I also think you should stay safe.

cypherpunks, (edited )
@cypherpunks@lemmy.ml avatar

I think most chromebooks allow you to disable their boot security? some even allow you to re-enable it with different keys so that you can have a different trust anchor instead of google.

Max_P,
@Max_P@lemmy.max-p.me avatar

Installing Ubuntu isn’t breaking any DRM or any anti-piracy measures.

Unless your country is really strict about using devices exclusively as the manufacturer intended, but that’d be countries that also want to monitor everything you do. Hard to tell without knowing what country that is.

That said, I’m pretty sure Google is perfectly okay with people doing that. Even on the Pixel phones, they openly let you unlock the bootloader, and even allows you to add your own keys so you can relock the bootloader with a custom OS. They only care about security and people not getting a device from eBay full of malware. That’s why there’s a message during boot that’s either orange or yellow warning, to tell the users the device has been tampered with. But everything works fine otherwise.

rho50, in would it be illegal to download Ubuntu on a Chromebook?

Crostini is an official feature built by Google that allows you to run Linux on a tightly integrated hypervisor inside Chrome OS. You keep a lot of Chrome OS’ security benefits while getting a Linux machine to play with.

That said, no, it’s not illegal to install a different operating system on your Chromebook hardware. They are just PCs, under the hood. You might lose some hardware security features though, e.g. the capabilities provided by integration of the Titan silicon.

If you had a job at Google, corporate IT would definitely not be happy if you wiped the company-managed OS and installed an unmanaged Linux distro :)

cypherpunks, (edited ) in would it be illegal to download Ubuntu on a Chromebook?
@cypherpunks@lemmy.ml avatar
rockSlayer, in would it be illegal to download Ubuntu on a Chromebook?

I’ve done this myself. It’s 100% legal to do. The only thing you need to be concerned about is if the distro you want to use is compatible with your Chromebook.

makingStuffForFun,
@makingStuffForFun@lemmy.ml avatar

To jail with you!

TCB13, in ISC DHCP Client and Relay End of Maintenance
@TCB13@lemmy.world avatar

And here I was thinking people were about to move to systemd-networkd so network would actually work decently on the Linux desktop and then I remembered that GNOME comes with the bs called network-manager.

KISSmyOS, (edited )

And here I’m wondering when systemd-desktopd will replace Gnome.

TCB13,
@TCB13@lemmy.world avatar

That’s gonna be a good day. I’m sure they’ll have the common sense to include systemd-desktopd-iconsd and systemd-desktopd-slow-transition-animationsd will be optional. :P

code,

God i hate network manager and the vpnc plugin specifically. Its been broken for almost 2 years. You cannot add a vpnc vpn in network manager.

Laser,

What’s broken? I just added a vpnc connection on my machine (granted can’t test it since I have nothing to connect to) but there was a vpnc connection profile until I deleted it.

code,

What distro? Might be gnome only. Im on latestest budgie and cant add. Theres github issues etc. I can edit the file by hand and it works so no biggie but its a long standing issue

Laser,

OK, I tested this on Plasma.

code,

Yea im currently looking into a diff distro

code,
Laser,

I use both depending on the device. My desktop at home and all servers use systemd-networkd and I’m very happy with it. Right now, I’m on vacation and NetworkManager comes in very helpful with the ability to quickly manage networks as a normal user with a graphical user interface.

TCB13,
@TCB13@lemmy.world avatar

Question is: why can’t the GNOME people that are so eager to reinvent everything dedicate a few bucks out of their new 1M€ funding and integrate it with systemd-networkd and ditch the old NetworkManager for good. That thing is inconsistent and to make things worse now we’ve the “new network settings” with some settings and then the NetworkManager window/GUI with more settings and things are as coherent as Windows 10’s new Settings vs Control Panel… Fucks sake GNOME.

For what’s worth in Windows I can pull the old Control Panel Network Connections settings go into properties and manage everything network adapters have to over with a simple tab based navigation. In GNOME right now it is a shit show of jumping around between the GNOME Settings and the older NetworkManager GUI to end up not being able to easily get a VLAN tag on some connection.

Laser,

Why would they ditch NetworkManager though? What’s everyone’s issue with it?

TCB13,
@TCB13@lemmy.world avatar

I just told you a few…

Ozzy, in How do I get rid of excessive password prompts, with the least amount of lost security?

I really want to know this too, I’ve been looking for a fix for this but no luck. Waiting to hear replies

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

in case you’re wondering about discord specifically, turning off the KDE wallet subsystem in the system settings worked for me, since I didn’t use it anyways.

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