Hi! I’m an anime artist!
Check out my work on BlueSky or Pixiv

  • 0 Posts
  • 419 Comments
Joined 2 years ago
cake
Cake day: March 3rd, 2024

help-circle

















  • I’m not sure how well Laser printers work with Sticker Paper, so you may have to look more into that. Brother makes great laser printers, so they have a lot of options there.

    I own a Epson Ecotank printer and, while I haven’t actually gotten around to trying out sticker paper on it. I do like it. I have the ET-8550, which is the big one, but there are smaller, cheaper ones that need just Cyan, Magenta, Yellow, and Black ink, as well as black only. If you’re using it often, it should be pretty reliable. The worst thing you can do with an inkjet printer is not use it, because the ink will dry up on the nozzles (and in the lines, in the case of an ink tank printer). I try to run a test print that uses all the inks at least once ever 2 weeks.

    Only other thing to look out for, is that for some of the Ecotanks, the Black will be a pigment based ink, and the color will be a dye based ink, so make sure the sticker paper you choose matches the inks in the printer you choose.



  • If you want to make GRUB remember the last boot entry you picked, you can edit /etc/default/grub and set the following
    (make note of the original values or comment out the existing entry by adding # to the start of the line first)

    GRUB_SAVEDEFAULT=true
    GRUB_DEFAULT=saved
    

    then run sudo update-grub to apply the changes. When you next boot and select a kernel, GRUB will remember that choice and just use it.

    Maybe you could try reinstalling the newest kernel? sudo tac /var/log/apt/history.log | less should give you a list of the last updates that were installed. Idk what Ubuntu calls their kernels, but they’d be packages named like “linux-image-generic” or something like that. If that doesn’t work, then maybe they messed something up on that kernel update and you’ve gotta wait for a fix.

    Whenever it does get fixed, you may want to undo the changes to /etc/default/grub