Yeah, it’s a pain. Leads to bad one liners:
for i in $(ls); do zcat $i || cat $i; done
Yeah, it’s a pain. Leads to bad one liners:
for i in $(ls); do zcat $i || cat $i; done
Pretty sure it’s not closed source? https://www.theregister.com/2023/11/10/snap_without_ubuntu_tools/
Isn’t that the purpose though of Ubuntu though? They made it easy, everything is open source, and then people/companies/orgs that want to do things different can just fork it and do their own thing. If they make a better product according to even 1 person, great. Job done. Plenty of people are happy with vanilla Ubuntu.
I don’t even use Ubuntu but I sure appreciate the amount of work they’ve done over the years and I feel they get a lot of stick about it for no good reason.
Terrible title, I thought it was a vulnerability in git.
I used to have issues with the different processor types, I used to downgrade to the core2duo to get things to boot.
I bought one this year. Been using it a week, hope it helps later on!
Well, let’s see…my work laptop experience (so far).
Worse how? Jellyfin was forked from Emby, and since then has continued to improve in my eyes.
I think they moved from GPL3 to Apache 2 in 2017 and then only added that one line about restricting confluence in August.
Didn’t something similar just happen with RustDesk? ChatGPT response from author in an hours old account.
Similar here. I used to have 2 screens that if they turned off for powersaving only 1 of them would wake up. So I had a script on the desktop to do a reset and move them correctly.
#!/bin/bash
xrandr --output HDMI2 --off
xrandr --output HDMI2 --auto --same-as HDMI1
xrandr --output HDMI1 --right-of HDMI2
exit
Wasn’t there some controversy about this that it wasn’t entirely open-source?
I had to upgrade some OL6 VMs to OL7 VMs running Oracle DBs and Apps (on OVMM no less). There was no appetite for buying additional storage, or restoring the environments with RMAN. Luckily, everything had been installed under /u01 which was on its own virtual disk.
So I built a new VM as OL7 (same hostname, etc.), installed the pre-req RPMs for Oracle DB, disconnected the virtual disk from the OL6 and attached it to the new OL7, synced users and home dirs - and it only bloody worked.
I don’t want to be a pain, but it’s not “basically Mint running on an M1 iMac.” it’s Asahi/Fedora running Cinnamon. Also, you’ve connected an external monitor for an M1 iMac? Do you mean it’s an M1 Macbook instead?
I’m out of the loop. What’s going on?
I mean, I get it, but that’s also not a thing of git, right? Just because GitHub does something doesn’t mean every other hosting provider needs to. If your code review process is to comment upon specific commits, maybe it’s the code review process that’s wrong?
Feel you there. 4 hours here. All of them cloud instances whereby getting acces to the actual console isn’t as easy as it should be, and trying to hit F8 to get the menu to get into safe mode can take a very long time.
That’s…Awesome! Thank you!
Sandboxed typically restricts a program from being able to read/write to various areas (think an app isn’t allowed to use the network, or access USB devices, or it’s only allowed access to a certain directory in the filesystem).
Containerised is a way of virtualising an app/apps so that they can be easily distributed to run once or thousands. They can and are also sandboxed to different degrees.
Won’t this cause cat to iterate through all files in the cwd once zcat encounters an issue, instead of just the specific file?