• 0 Posts
  • 18 Comments
Joined 4 months ago
cake
Cake day: February 15th, 2024

help-circle

  • Am I overlooking something ? Configure your TV to get IP address and DNS settings via DHCP from your pi-hole WiFi access point. If you are worried about a DHCP conflict, just make sure that the IP range that both DHCP servers hand out have a different range, and check whether your devices always got the same IP address before, and adjust the ranges accordingly.





  • My guess is that a 2015 Macbook Air is probably not going to run a MacOS version that is still supported by Apple. That would be yet another reason to simply install Linux. Before you do so you can go for https://rescuezilla.com/ and do disk cloning to an image that you save to some storage like a USB disk. If you do the same after your installing and tweaked Linux installation, you can have the best of both worlds whenever you need it.



  • Nice that you are using FSearch :) I would put more excludes in it when you really want to index / In fact, apart from /home I would not index anything else than /etc /usr/share/doc and maybe /var/run/media or /media (depending on which Linux distribution you are using, for example Arch Linux will use /var/run/media and Ubuntu will use /media for removable devices).



  • Pacstall is for Ubuntu. I am not sure it can work well for Debian. Yes, sure, it is possible that some Ubuntu users see value in having AUR alike repositories to install from. Actually PPA for Ubuntu (PPA does not work well on Debian I’ve read) is kind of like AUR. The Personal Package Archives are uploaded by someone and provide newer versions of software, or provides software which is not in the main Ubuntu repositories. A good example of that is the PHP packages from Sury : https://deb.sury.org/





  • Linux is usually very flexible. /home is just the standard, but you could configure for example your user A to use /home/a/ as home and configure your user B to use /home2/b/ which you have saved on a USB drive that you normally will not connect. You can check this for yourself by looking at the /etc/passwd file with a text editor. Your user C can e.g. have its home in /var/lib/my-fancy-home/c/

    Years ago some Linux howtos or Linux distributions during their installation recommended to have several different partitions (I believe some of the BDSs like OpenBSD still offer such an option during installation). One advantage of that for /home is that you can have different mount options like noexec for preventing the execution of files inside your home directory which can be a good security measure. But I am not sure what the impact is for KDE and GNOME desktop files as launchers. These need to be executable files.


  • The dmesg command via either sudo or root can show a lot of that output. If your system did not have rsyslog or the syslog-ng packages installed any more then you’d only have systemd journal but you can, depending on your Linux distribution, install these logging applications. Back in the days when Linux users would not always use a graphical display manager, you could actually use shift and page up and page down to scroll through the kernel boot up messages.