• 0 Posts
  • 35 Comments
Joined 2 months ago
cake
Cake day: March 10th, 2025

help-circle



  • And then you critize the government, get a sham trial and are marked for your crime as some kind of “garbage person” without rights. Afterwards, execution or locking away and maybe throw in some torture for the fun of it. This is reality already. It just hasn’t been done to you.

    You can feel about it however you want, I may even feel the same with some people, but as an adult, we have to use logic.

    The point is, there must never be an official group of people without rights you can just “get rid of” im some way. This limit is not for the punished, it exists to shield the innocent.



  • These are the occasions I wish death penalty was a thing, especially for those cases where the idiots have been caught in the act - there are better things to do with my tax money than making sure they have a place to live in and some nice good meals to go with it.

    I do understand how you feel about that and I do kinda feel the same, BUT … you always have to assure that every last person has rights and gets acceptable treatment, even the ones who seemingly have no soul. Because if there’s ever a category of people without rights, any government would have an easy way to get rid of eveyone critizing them.


  • Well the plan worked too well, and I now have no discernible drives

    Never used Bazzite, but to me that sounds like one of the following possibilities

    • the drives have been automounted and you do not know where
    • Bazzite uses LVM to create a “pool of storage” to be used instead of using drives seperately

    Disks have been automounted

    You can check if this is the case by opening a terminal and typing in lsblk. This command lists all drives and the folder they have been mounted to.

    Sample output from my pc:

    ❯ lsblk
    NAME        MAJ:MIN RM   SIZE RO TYPE MOUNTPOINTS
    zram0       251:0    0     8G  0 disk [SWAP]
    nvme0n1     259:0    0 931,5G  0 disk
    ├─nvme0n1p1 259:1    0   600M  0 part /boot/efi
    ├─nvme0n1p2 259:2    0     1G  0 part /boot
    └─nvme0n1p3 259:3    0 929,9G  0 part /home
                                          /
    nvme1n1     259:4    0 465,8G  0 disk
    

    As you can see, this means I have 1 zram disk as swap space, 1 M.2 NVME disk (nvme0n1) with 931GB (1TB) split into 3 partitions (mounted on /boot/efi, /boot, /home and /) and one unused M.2 NVME disk (nvme1n1) with 465GB (500GB).

    As @[email protected] in his answer said, Bazzite might mount drives somewhere in /var/mnt.

    Bazzite uses LVM

    LVM (Logical Volume Manager) is used to create a “storage pool” out of multiple disks, even if they have different sizes etc. If Bazzite used LVM to “fuse” your disks, you will not be able to use them seperately.

    You can check if LVM was used by opening a terminal and executing the following commands:

    sudo pvdisplay
    sudo lvdisplay
    

    These commands show the physical volumes (pvdisplay) known to LVM and the logical volumes (lvdisplay) managed by LVM. If there’s no output it means that Bazzite did not use LVM.

    is it possible to skip (only) that somehow and auto log in?

    Using Fedora Workstation 42 with GNOME 48 I can enable autologin in the system settings app. You should be able to find it under system -> users


  • Back when I was using Arch Linux and still did a lot of desktop-experimenting, I tried linux-zen out of curiosity.

    I did not do any benchmarks, as I wanted to know if I can notice anything. I did not feel any difference. Maybe it was because I did not play the most pc-stressing games, maybe there was no difference because my hardware was relatively new, maybe it was because most of my games were more GPU-limited then CPU-limited, I do not know. All I can say is, there was no difference for me to notice in my gaming sessions, so I switched back to the default kernel.

    Currently using Fedora Workstation 42 and linux 6.14.5, still happy with default kernel.








  • Saved! Thank you so much.

    I’ve used Linux full-time since late 2020 and I never knew about ctrl+y and ctrl+u.

    I’d also like to contribute some knowledge.

    aliases

    You can put these into your ~/.bashrc or ~/.zshrc or whatever shell you use.

    ###
    ### ls aliases
    ###
    # ls = colors
    alias ls='ls --color=auto'
    
    # ll = ls + human readable file sizes
    alias ll='ls -lh --color=auto'
    
    # lla = ll + show hidden files and folders
    alias lla='ls -lah --color=auto'
    
    ###
    ### other aliases
    ###
    # set color for different commands
    alias diff='diff --color=auto'
    alias grep='grep --color=auto'
    alias ip='ip --color=auto'
    
    # my favourite way of navigating to a far-off folder
    # this scans my home folder and presents me with a list of
    #    fuzzy-searchable folders
    #    you need fzf and fd installed for this alias to work
    alias cdd='cd "$(sudo fd -t d . ${HOME} | fzf)"'
    

    recommendations

    ncdu - a shell-based tool to analyze disk usage, think GNOME’s baobab or KDE’s filelight but in the terminal

    zellij - tmux but easy and with nice colors

    atuin - shell history but good, fuzzy-searchable. If you still have the basic shell history (when pressing ctrl+r), I cannot recommend this enough.

    ranger - a terminal file-browser (does everything I need and way more)





  • The first one I saw was Debian 3.1 (Sarge). I was in school and our objective this time was installing debian + getting a working Xorg session. Never heard of Linux before, didn’t get a working Xorg session, but wow man, there’s something other than Windows and MacOS. I couldn’t have imagined.

    The first one I actually used on a desktop (laptop for school, in that case) was Ubuntu 6.06 (Dapper Drake).

    I’ve tried oh so many different linux distributions over the years, I probably forgot most of them. Maybe some don’t even exist anymore. My goal was always Arch Linux, having seen it on a schoolmates laptop. I really fell for the “here’s a pretty minimum base, do whatever” thing.

    In the end, I exclusively used Arch from 2020 until this year. Actually using Arch and reading the ArchWiki were probably what taught me most of what I know about linux in general and how things work.

    I’ve been searching for a less DIY-solution which is still up-to-date (especially with kernels and mesa) and I landed on Fedora Workstation, which is what I’m currently using on my work latpop and desktop at home. I do miss some things from Arch, but Fedora has been pretty good to me and I, for the meantime, intend to stay here.



OSZAR »