Sidebar

Operating Systems

operating_systems
Operating Systems SaltyIceteaMaker 2 months ago 100%
x86 tablet os

Like the title says i need an os for a x86 tablet. I already tested various different linux distros, (mint, ubuntu, debian etc.) with various de's (gnome, xfce, plasma, plasma mobile) but nothing really suits a tablet. I tried android x86 but that wouldn't install. Basically my problem is that apps etc. Are made with mouse and keyboard in mind making me unable to for example easily scroll as i have to drag the scroll bar manually. Anyone got ANY recommendation? The default os was mint btw.

1
2
operating_systems
Operating Systems DreamyRin 3 months ago 100%
best resources and tips for a newbie to linux?

I didn't realize this community existed and posted my other thread about linux distros in another community, so I'll try rectifying that here. I'm trying to learn as much about linux as a desktop system as I can before I dive in to installing a distro on my computer. I do have a *tiny* bit of familiarity with the terminal from having servers running Debian, but those I get a lot of help with. the distro I've chosen is Bazzite, which is based(?) on Fedora if I recall right. I liked the stuff it comes with (I love video games) built in and I like the idea of the atomic desktop setup. so, what are your tips and tricks for a new linux user? what about outside resources? I've been doing as much digging for articles and videos as I can, but I thought asking the community might be a good idea too. I'm trying to compile these resources for myself and my partner, so that we have stuff to learn from and reference. as a final question, what got you into using linux over windows or mac? thanks in advance!

23
14
operating_systems
Operating Systems aRubes 3 months ago 100%
New EasyOS 6

New EasyOS 6 [@operating\_systems@beehaw.org](https://beehaw.org/c/operating_systems) Trying the new [#Easyos](https://sloth.run/tags/Easyos) on a 13 year old Lenovo laptop and so far everything's going smooth. It's a wonder to see it coming back to life. [Release Note](https://distrowatch.com/12179) [@privacyfoss@venera.social](https://venera.social/profile/privacyfoss) [@operating\_systems@beehaw.org](https://beehaw.org/c/operating_systems) [@distrohopping@lemmy.world](https://lemmy.world/c/distrohopping)

6
0
operating_systems
Operating Systems CorrodedCranium 5 months ago 100%
Ars Technica | Not-a-Linux distro review: SerenityOS is a Unix-y love letter to the ’90s arstechnica.com

Here are links to the [website](https://serenityos.org/), [GitHub](https://github.com/SerenityOS/serenity), and [Wikipedia](https://en.wikipedia.org/wiki/SerenityOS) pages. --- The article I linked is a couple years old but I did a quick search of the community and it doesn't seem to have been mentioned here. Hopefully you find it as neat as I did. There's also a couple YouTube videos covering it if you have some time to kill.

25
1
operating_systems
Operating Systems BuddyTheBeefalo 5 months ago 100%
RainbowSnakeOS https://palma3000.itch.io/rainbowsnakeos

>A 512 byte OS and snake video game written in 16-bit x86 assembly language (FASM). It can be run from boot sector and MS DOS as .com application.

7
0
operating_systems
Operating Systems brie 5 months ago 100%
OMG! We’re at forty! (Announcing the release of Fedora Linux 40) - Fedora Magazine fedoramagazine.org

[Fedora 40's Changeset](https://fedoraproject.org/wiki/Releases/40/ChangeSet) It's mostly minor changes, but the most noticable one for me was that Gnome 46 now has expandable notifications, no extensions needed. (Making it impossible to read the full notification text was one of the design choices of all time.)

12
0
operating_systems
Operating Systems ericjmorey 7 months ago 100%
Porting Strategy - Redox - Your Next(Gen) OS https://www.redox-os.org/news/porting-strategy/

cross-posted from: https://programming.dev/post/9979951 > Monday, February 12, 2024 > Ribbon and Ron Williams write: > > > As Redox functionality becomes more complete, we have been working hard to get a wide variety of software working. > > > > This post will cover our porting strategy for Linux/BSD programs. > > > We have ported the following games and emulators: > > > 2048 > ClassiCube > DevilutionX > DOSBox > eduke32 > FreeCiv > Gigalomania > Hematite > Mednafen > Neverball > OpenJK > OpenTTD > PrBoom (Doom engine) > ScummVM > Space Cadet Pinball > and others. > > > Porting is a major part of the Redox development effort. We are using porting as a way to prioritize and validate Redox functionality. > > > > Currently dozens of programs and many more libraries work. Our initial focus has been on porting Rust programs, but we also recognize the importance of supporting programs written in other languages. > > > > In last year Ribbon began the porting of more than 1000 programs and libraries to Redox! They are still work-in-progress and many require customized cross-compilation scripts or improved library support. You can see them here. > > > > With our recent change to a Linux-compatible path format, we have removed a major hurdle to supporting Linux applications. In the future we plan to expand our POSIX support, port more Rust crates and continue to improve Relibc. > > > > Some thought is being given to virtual machines and Wine as possible mechanisms for running proprietary binaries and possibly even proprietary drivers. However, there are no specific plans for that capability at this time. > > Read [Porting Strategy - Redox - Your Next(Gen) OS](https://www.redox-os.org/news/porting-strategy/)

6
0
operating_systems
Operating Systems ericjmorey 9 months ago 100%
TIL about KDE @ KDE Social lemmy.kde.social

cross-posted from: https://programming.dev/post/8098358 > KDE set up their own Lemmy instance and has an active [KDE community](https://lemmy.kde.social/c/kde) [[relative link](/c/kde@lemmy.kde.social)]

16
2
operating_systems
Operating Systems Penguincoder 9 months ago 100%
How do you recall your most used commands?

For example, things you do often but not often enough to make a muscle memory? On Linux systems with Bash, I just use bash aliases. If I do it more than once, It gets an alias or a script; cause I won't remember next time. Example of my current desktop aliases : ``` alias fuck='sudo $(history -p \!\!)' alias hstat='curl -o /dev/null --silent --head --write-out '\''%{http_code}\n'\''' alias ls='ls -la --color=auto' alias pwgen='< /dev/urandom tr -dc "_A-Z-a-z-0-9\#\+=\$" | head -c${1:-15};echo;' alias rsync='rsync -ah --info=progress2' ``` And in my bashrc I have the following settings and functions which come in handy when heads down in the terminal: ``` # append to the history file, don't overwrite it shopt -s histappend # for setting history length see HISTSIZE and HISTFILESIZE in bash(1) HISTSIZE=1000 HISTFILESIZE=2000 HISTTIMEFORMAT="%Y-%m-%d %T " #### function stopwatch() { local BEGIN=$(date +%s) echo Starting Stopwatch... while true; do local NOW=$(date +%s) local DIFF=$(($NOW - $BEGIN)) local MINS=$(($DIFF / 60)) local SECS=$(($DIFF % 60)) local HOURS=$(($DIFF / 3600)) local DAYS=$(($DIFF / 86400)) printf "\r%3d Days, %02d:%02d:%02d" $DAYS $HOURS $MINS $SECS sleep 0.5 done } function md() { pandoc "$1" | lynx -stdin; } function weather() { ( IFS=+; curl wttr.in/$(curl -s http://ipwho.is/ | jq .postal);); } ``` So what do you do to remember or recall your most used commands?

20
22
operating_systems
Operating Systems brie 10 months ago 100%
Fedora Linux 39 is officially here! - Fedora Magazine fedoramagazine.org

I rebased my Silverblue install yesterday. The most notable change in my opinion is the tweaks to the UI and theming of Gnome 45. [Changeset](https://fedoraproject.org/wiki/Releases/39/ChangeSet#Fedora_Linux_39_Accepted_System-Wide_Changes)

18
0
operating_systems
Operating Systems d3Xt3r 1 year ago 100%
Linux 6.5 Released With AMD P-State EPP Default, USB4 v2, MIDI 2.0 & More Hardware Bits www.phoronix.com

Linux 6.5 has many great features from the AMD P-State EPP driver default rather than ACPI CPUFreq for Zen 2 and newer supported AMD Ryzen systems, initial USB4 v2 enablement, initial MIDI 2.0 kernel driver work, more Intel hybrid CPU tuning, and a whole lot more.

19
2
operating_systems
Operating Systems CorrodedCranium 1 year ago 100%
If Mircosoft were to fully collaborate with the Linux/open source community what would the resulting Linux distro chimera look like and how would it affect the Linux community in general?

I am aware of the Linux subsystem and projects like [Linspire](https://en.m.wikipedia.org/wiki/Linspire) and [ReactOS](https://en.m.wikipedia.org/wiki/ReactOS) that attempt to either better compatibility between the two OSs or replicate the other but I was wondering if Microsoft were to open source the entirety of Windows what the ramifications on the Linux community would be. Would WINE and Proton's development rapidly accelerate? Would they be necessary? Would Windows tools like their file explorer become dominant over others in the Linux space? Would things like NTFS be installed by default in most distros? [exFAT](https://en.m.wikipedia.org/wiki/ExFAT) also seemed to be (or was) in a weird legal position. Do you think a lot of people and businesses would jump on a chimera distro that was half and half? --- Bit of a weird question I know but I wouldn't even know how to word it for a web search. I could also be missing a lot due to my knowledge level on licenses and compatibility projects. It doesn't have to be Linux specific either. If you wanted to mention how it would affect BSD or other OSs I'd be interested to hear about that as well.

30
13
operating_systems
Operating Systems SkepticElliptic 1 year ago 100%
I'm looking for the best way to recover data from an android phone that isn't unlocked or rooted.

Long story short, I was arrested for disorderly conduct and "resisting arrest." The police took my phone and arrested me when I told them I was recording. They took me in a car, and we waited for about 15 minutes, then they brought my phone back. When I got out of jail, the recording only went up to a few seconds before a key moment and then ended before the time the police arrived. Under file properties, the time 'edited' does add up to the length of the recording after another short recording had stopped. I started and stopped recording, and the started again shortly afterward. If you trim the end of a video, does it also change the time it was edited? The Trash folder on my phone was empty, I have never emptied this folder, perhaps I've never deleted anything in 1.5 yrs? I still have 40 gb left in storage. One of three things happened: 1. I bumped the phone, and it stopped recording, I wasn't looking at the screen at all and was just holding it against my chest. 2. My phone overheated and stopped recording. It is a pixel 5a 5g, it has overheated on me from just sitting in the sun, so I can see it overheating while recording, it was very hot out at the time. 3. The police officer trimmed the video down and then emptied my trash folder to make it harder to recover. I've tried several different apps and haven't been able to recover anything relevant, only old files that I deleted (Again, I don't remember ever emptying my trash folder) All the options for copying a full disk image require root, which requires unlocking the bootloader, which requires wiping the entire phone. I might still be able to recover data that way, but who knows. I'm almost willing to have it sent off to have the data pulled from the physical storage inside the device if I have to. I feel like I'm going crazy, it would really help to have the rest of the video since it does show someone threatening my life with a weapon. I already explained this to my attorney. If the police claim they watched the video on my phone, they are lying since my phone would have been locked by the time they got there if it wasn't recording, right?

6
13
operating_systems
Operating Systems hakerdefo 1 year ago 100%
Toy Story characters behind code names of Debian releases https://blanc.pages.dev/debian-codenames-toy-story-characters/

Debian release code names are derived from the names of characters in the movie Toy Story. This post lists Debian releases accompanied by images of their corresponding Toy Story characters.

14
3
operating_systems
Operating Systems SkepticElliptic 1 year ago 100%
Trying to install Windows XP on a Dell Dimension 3000

Ok, I know this is outside of the norm for this page, I don't really care. Backstory: I buy things from estate auctions on hi-bid. Nobody else bid on this so I got it for the minimum bid, $2.50 USD. It was missing the hdd, and it was in a filthy barn. Side note: auctions are generally "as-is, where is" that means you pick these items up at the location of the estate, they usually pull things out and organize them, but they don't clean them or anything usually. I have an extra IDE HDD, so I threw that in and tried to install Windows XP. I got errors halfway through saying "setup cannot copy the file:" Then I got it to go all the way through, but it won't boot. Then I got a system error that the HDD is not present. I tried an IDE adapted SSD, still not recognized. Then I got the HDD recognized again. I figured I would check the ram: 1x 256MB. I threw in 2x512MB, that's a neat trick. I also swapped out the cd drive since it was having a hard time opening up anyway. Now I'm back to, "setup cannot copy the file:" Maybe a bad CD burn? Idk, it's been awhile since I've done this.

21
15
operating_systems
Operating Systems d3Xt3r 1 year ago 100%
Zorin OS 16.3 is now available and ready to make using Linux even easier www.zdnet.com

If you're looking for what might well be the most polished and user-friendly Linux distribution on the market, Zorin OS has a new release for you that covers all the bases.

47
10
operating_systems
Operating Systems d3Xt3r 1 year ago 100%
Systemd-Free Immutable Distro Nitrux 2.9.1 Is Out Powered by Liquorix Kernel 6.4 9to5linux.com

Nitrux uses **OpenRC** instead of systemd, unlike most mainstream distros. It also features the **Liquorix** kernel, described as "an enthusiast Linux kernel designed for uncompromised responsiveness in interactive systems, enabling low latency in A/V production, and reduced frame time deviations in games." New in this release is **kboot**, a utility to switch kernels on-the-fly without needing a reboot, and **VMetal**, which allows users to run Windows in parallel to Nitrux to provide users of access to Windows software.

19
11
operating_systems
Operating Systems Seathru 1 year ago 100%
Any tips/tricks for cloning an existing operating system (Win10) to run in a VM?

I have a laptop with obsolete, licensed diagnostic software that I use on old equipment still in service. I've kept it alive longer than it should have been, but it's only a matter time before a disk or mobo failure puts me in a bad spot. I'd like to make a clone of the current OS (Windows 10) as-is that could be run in VirtualBox or some other VM as a backup. Is it as simple as making a disk image with DD and then loading that up in VirtualBox? I'm sure it's not, but what am I overlooking? Or what other software would be better to use? I'm fairly computer literate, but a mechanic by trade; So, not an expert. Thanks for any help.

7
5
operating_systems
Operating Systems bbbhltz 1 year ago 100%
What new OS* have you tried this year?

*or distribution Having been a (GNU-)Linux user since 2006 (desktop only), I have done what many Linux users have also done: hop around from one thing to another. That all stopped a few years ago when I decided that I would just stick with Debian. I was happy and comfortable. It worked. I used Stable, Testing, Unstable... no issues. That is until about 4 months ago I was cleaning and found an older laptop and decided to try something different on it: **Alpine Linux**. I even [wrote about it on my blog](https://bbbhltz.codeberg.page/blog/2023/04/alpine-linux/). It was such a nice installation and process that I decided to put it on my main personal laptop. Since April I have been using Alpine and I must say I am pleased. Differences from one Linux to the next aren't much to write about. With Alpine however, I finally experienced another part of Linux that I hadn't had the opportunity to enjoy: the community. Package requesting? Easy. Asking for help? No shame. Patience and help provided? Excellent. None of those comments are to disparage other OS communities. It is simply that I had only ever used popular distros (Debian- and Arch-based) so I never needed to ask for help. Either way, I am still using Alpine. **So, just to repeat the titular question: what have you tried out this year? What are your impressions?**

67
75
operating_systems
Operating Systems Daanbanaan 1 year ago 100%
Best Linux for tablet pc ?

I got this Chinese brand tablet pc and I'm positively surprised by it. Its a Dere T30 pro for those who are interested. I've been a Linux user for 20 years now so windows 11 is kinda new to me but I don't think I like it in the long run. I'm going to try to get Linux running on my tablet. So...What os or dm is best to use with a touchscreen?

8
2
operating_systems
Operating Systems CondeMg 1 year ago 100%
(SOLVED) Help with storage on /var

Hello guys, thanks for the help and your time before starting. My problem is this one: I have Debian 12 installed onto my computer with 4 partitions: Total disk is 466,6 GiB (~=500 GB) • "/" Size: 22,7 GiB (42% used) • "/tmp" Size: 1,8 GiB (6% used) • "/var" Size: 9,1 GiB (84% used) • "/home" Size: 433 GiB (12% used) "/var" is almot full, with a 84% used, and I want to try to decrease that percentage. I've removed logs and all I could remove, but that percentage is still pretty high. Searching around, I found that apps installed through Flatpack are stored in "/var/lib". This may be my problem? Is there any way to store Flatpack apps on "/home" # Solution ------- Thanks to [@furrowsofar@beehaw.org](https://beehaw.org/u/furrowsofar) and [@heartlessevil@lemmy.one](https://lemmy.one/u/heartlessevil) To solve this I moved "/var/lib/flatpack" to "/home/user/..." Then I softlinked the folder to its previous place with the next command: ln -s [source || /home/user/.../flatpak] [Destination || /var/lib/] I reduced the storage percentage to a 18,5% :D Edit: corrections

3
1
operating_systems
Operating Systems Raisin8659 1 year ago 100%
Update now! Microsoft patches a whopping 130 vulnerabilities www.malwarebytes.com

Microsoft has released security updates for 130 vulnerabilities, including four that are known to be actively exploited. **The four actively exploited vulnerabilities are:** - CVE-2023-32049: A Windows SmartScreen Security Feature Bypass vulnerability. - CVE-2023-35311: A Microsoft Outlook Security Feature Bypass vulnerability. - CVE-2023-32046: A Windows MSHTML Platform Elevation of Privilege (EoP) vulnerability. - CVE-2023-36874: A Windows Error Reporting Service Elevation of Privilege vulnerability. Other vendors have also released security updates, including Adobe, Apple, Cisco, Fortinet, Google, MOVEit, Mozilla, SAP, and VMware. These updates are important to install as soon as possible to protect your systems from attack. **Other details:** - The CVE-2023-32049 vulnerability can be exploited by tricking users into clicking on a malicious link. Once clicked, the link will bypass the Windows SmartScreen security warning and allow the attacker to execute arbitrary code on the victim's computer. - The CVE-2023-35311 vulnerability can be exploited by tricking users into opening a malicious Microsoft Outlook email. Once opened, the email will bypass the Microsoft Outlook security warning and allow the attacker to execute arbitrary code on the victim's computer. - The CVE-2023-32046 vulnerability can be exploited by tricking users into opening a malicious file. Once opened, the file will exploit the vulnerability and allow the attacker to gain elevated privileges on the victim's computer. - The CVE-2023-36874 vulnerability can be exploited by attackers who have local access to a victim's computer. Once exploited, the vulnerability will allow the attacker to gain administrator privileges on the victim's computer.

7
1
operating_systems
Operating Systems nihilx7E3 1 year ago 100%
Announcing Windows 11 Insider Preview Build 25905 blogs.windows.com

cross-posted from: https://beehaw.org/post/1070586 > nice update for canary today. tl;dr: > > - the branch has switched back from `zn_release` to `rs_prerelease` & the dev semester is now gallium > - all new features from moment 3/4 & dev have been foward-ported & re-enabled including: > - dev drive > - the new windows app sdk file explorer UI > - windows backup > - rgb lighting settings > - passkey support > - action center improvements (seconds on clock, new vpn experience) > - emoji 15 support > - rust code is actually (unlike the false alarm before) in the windows nt kernel now (gdi region, `win32kbase_rs.sys`) > - 3d/gradient emojis are finally here (with a [new emoji font format](https://learn.microsoft.com/en-us/typography/opentype/spec/colr#colr-version-1-rendering-algorithm)) > - windows arm32 support is dead >

7
0
operating_systems
Operating Systems hakerdefo 1 year ago 100%
Debian stable download links gist.github.com

A few friends recently commented that navigating the download page of Debian for the install media of their choice can be really tricky. I came up with this little gist to solve their frustration.

3
0
operating_systems
Operating Systems slimsalm 1 year ago 100%
Who had the chance to make use of cubeos

Hello fellow lemmers, who of you had a chance to install Cubeos and play around with it? is it something worth installing on a laptop, (assuming you have a beefy one). How does Cubeos treat Nvidia integrated graphics?

4
0
operating_systems
Operating Systems lillytheaspie 1 year ago 100%
An amazing textbook I want to share about OSs https://pages.cs.wisc.edu/~remzi/OSTEP/?source=techstories.org

It's a textbook a friend recommended me, and it's great for learning the conceptual workings of an operating system, and it has practical knowledge alongside the conceptual. Code examples are written in C. If thou art interested in Operating Systems, this is a highly informative and interesting textbook thou shouldst check out!

8
0
operating_systems
Operating Systems Peter1986C 1 year ago 75%
[The Linux Experiment] Linux distros need to evolve (away from traditional package management) tilvids.com

cross-posted from: https://beehaw.org/post/979002 > As a basis for the post title, I used the thumbnail "title" instead of the somewhat clickbaity title Nick used for the video. > > For those who rather watch on Youtube for whatever reason: https://youtu.be/8yAo9Bc6iOI

2
0
operating_systems
Operating Systems debounced 1 year ago 100%
An Architectural Overview of QNX https://cseweb.ucsd.edu/~voelker/cse221/papers/qnx-paper92.pdf

A trip down memory lane... QNX, a realtime microkernel surrounded by a collection of optional processes that provide POSIX- and UNIX-compatible system services.

3
0