Hellmo_luciferrari

  • 5 Posts
  • 127 Comments
Joined 9 months ago
cake
Cake day: December 20th, 2023

help-circle

  • I tried using Bazzite since I didn’t want to fuss with Wayland on Nvidia with Arch.

    I had more gripes and more issues with an immutable distro than I ever did with my Arch install.

    Stuck it out with Arch. It has taught me a lot.

    The problem many folks have with Arch is the fact they don’t want to read or learn; well, newsflash, if you read and learn Arch isn’t exactly all that hard to use, setup, or maintain. It has better documentation than Bazzite and other newer distros. In fact, Arch Wiki has saved me hassle for other distros.

    Your mileage may vary. However, I wouldn’t recommend an immutable distribution nec3ssarily to someone coming from Windows unless they want to shift from one paradigm to another.

    Switching from Windows to something with such a vastly different approach in many cases will turn users away from using Linux. Their experience can dictate they switch away because of lack of knowledge and then proced to conflate every distro as just one “Linux” experience and not want to look back at it.

    I still stand by one thing you will always hear me say: use the right tool for the job.








  • I wasn’t meaning to conflate the two, as I see your point. I didn’t claim it was FOSS, just that the source was available.

    I know for me, I don’t mind using software that is licensed so that it doesn’t directly fall under FOSS. I just like the availability to view the source vs closed source software being a total black box.

    I have no plans to monetize their work, nor fork it, only use it.


  • I know I don’t want to open up any more ports than I have to, but you’re right, that does sound like another alternative to setting up VPN.

    Since I access more than just my pihole when connected to my home network. And because I want access to my home services, and don’t want to open up access to the public, opening one port and connecting to VPN is the way to do it. I have one port opened up for my VPN, and in order to connect you have to have my IP or my domain pointed at the IP, and you have to have a Wireguard profile setup, and know what port is open. So that does help a tad bit with my security concerns.

    Edit: how would I go about that if I felt so inclined? Any tips?






  • I may have misspoke, I use an AUR helper to install many programs and utilities, and am not at my computer to view the actual source. So I took a gamble and guessed AUR. My apologies.

    It could have been other instability, as I mentioned in another comment I didn’t really look too deep into it since it wasn’t so important. And by no means am I blaming Thunderbird (regardless of source) for the issues I have had. It truly is a great email client.


    Edit: It is from official source, not AUR. I have the same setup on my personal laptop. It came from Extras, and not AUR.

    May have to investigate a bit. May have to figure out each directory to purge, do a pacman -Rnsu thunderbird

    Then purge directories related, then reinstall.





  • To get Nvidia working on Arch here is what I did:

    During installation of Arch when it asked if I wanted to chroot into my distro I did. However if you enter commandline by hitting CTR+ALT+<F1 or F2 or F3> to change to a virtual console. If you are doing this from a chroot environment you don’t need sudo.


    edit the mkinitcpio.conf

    sudo nano /etc/mkinitcpio.conf

    In the MODULES=() section I added “nvidia nvidia_modeset nvidia_uvm nvidia_drm” without quotes. So it looked like this:

    MODULES=(nvidia nvidia_modeset nvidia_uvm nvidia_drm)

    Afterwards I updated my initramfs images by running:

    sudo mkinitcpio -P

    Then I edited my grub config:

    sudo nano /etc/default/grub

    Find the line that says “GRUB_CMDLINE_LINUX_DEFAULT=”“”

    GRUB_CMDLINE_LINUX_DEFAULT="nvidia-drm.modeset=1" 
    

    Then I updated grub

    sudo grub-mkconfig -o /boot/grub/grub.cfg
    

    Note: I use the Nvidia Proprietary drivers


    Resources: Arch Wiki


    I do not recommend Manjaro especially if you are going to be using the AUR (Arch User Repository) as it can cause things to break.