Owner of Eskimo North

  • 0 Posts
  • 337 Comments
Joined 2 years ago
cake
Cake day: July 27th, 2023

help-circle






  • @GnuLinuxDude I mostly use HP printers because with Linux they are always plug-in-play and because although they will provide a message telling me my ink is cheap third party ink, they will none the less accept and print with it.

    The model I previously used, HP OfficeJet 5258 All-in-One Printer, the printer always worked well but the scanners kept breaking. I went through four of these before I tried an Epson. The Epson initially worked with 3rd party ink then after a software update didn’t so at that point I trashed it and bought another HP, this time a HP OfficeJet 8015e Wireless Color All-in-One Printer which is much more robustly constructed. In fact while taking it out of the box, I accidentally dropped it from chest level and all it did was bounce, no pieces broke off, nothing. So far it has been reliable both for scanning and printing although the scanner is easier to jam but at least it doesn’t break in the process of my unjamming it.














  • @pastermil If you want a newer kernel than is provided in the apt package manager, you can download the latest from kernel.org, unxz it with unxz kernel-version.tar.xz, then untar it. It will give you a directory like linux-6.14.6, cd to that directory and do a make mrproper to remove any residual crap that might have been left there by the maintainer or a previous build, then if you want the stock debian configuration copy the current config file from /boot to .config, then make any adjustments to the .config, including some automatic adjustments that get made for your environment with make config, make menuconfig, makexconfig, make gconfig, whatever you prefer. For xconfig and gconfig which are graphical configuration GUIs you may need to install some libs that aren’t installed by default on Debian but ARE provided in your apt package manager. Then make -j$(NPROC) bindeb-pkg, for example on my machine 18 cores, 36 threads, I would do make -j36 bindeb-pkg to fully utilize the CPU cores, on the 18 core machine this takes about 7 minutes, on my 8 core workstation about 18, when it’s done you’ll be left with three or four .deb packages (depending upon whether or not save DEBUG is turned on or off in the kernel config). When you are done install the packages with dpkg -i *.deb, check /boot and your new kernel should be installed.