/fglt/ - Friendly GNU/Linux Thread

Welcome to /fglt/ - Friendly GNU/Linux Thread.

Before asking for help, please check our list of resources.

If you would like to try out GNU/Linux you can do one of the following:
0) Install a GNU/Linux distribution of your choice in a Virtual Machine.
1) Use a live image and to boot directly into the GNU/Linux distribution without installing anything.
2) Dual boot the GNU/Linux distribution of your choice along with Windows or macOS.
3) Go balls deep and replace everything with GNU/Linux.

Resources: Please spend at least a minute to check a web search engine with your question.
*Many free software projects have active mailing lists.

$ man %command%
$ info %command%
$ %command% -h/--help/-?
$ help %builtin/keyword%

Don't know what to look for?
$ apropos %something%

Check the Wikis (most troubleshoots work for all distros):
wiki.archlinux.org
wiki.gentoo.org

Any Forums's Wiki on GNU/Linux:
wiki.installgentoo.com/index.php/Category:GNU/Linux

>What distro should I choose?
wiki.installgentoo.com/index.php/Babbies_First_Linux
>What are some cool programs?
wiki.archlinux.org/index.php/list_of_applications
directory.fsf.org/wiki/Main_Page
>What are some cool terminal commands?
commandlinefu.com/commands/browse
cheat.sh/
>Where can I learn the command line?
mywiki.wooledge.org/BashGuide
grymoire.com/Unix/
overthewire.org/wargames/bandit
>Where can I learn more about Free Software?
gnu.org/philosophy/philosophy.html
>How to break out of the botnet?
prism-break.org/en/categories/gnu-linux

/fglt/'s website and copypasta collection:
fglt.nl && p.teknik.io/wJ9Zy

/t/'s GNU/Linux Games: IRC: #sqt on irc.libera.chat
fglt.nl/irc.html

Previous thread:

Attached: 1637033419301.jpg (800x800, 63.04K)

Other urls found in this thread:

deb.debian.org/debian
wiki.debian.org/Firmware
twitter.com/AnonBabble

>/t/'s GNU/Linux Games:
go back

What /var/logs do I need to look at to see if my hard drive is failing? Debian-based

Use smartctl

shout out to the user who recommended Fedora Kinoite to me recently: thanks dude, you're the best. i've slowly switched all my stuff from kde neon and it works really great for me. ostree is the future.

Shit. It's for my raspberry pi, and smartctl isn't native for that. Any other options?

Smartmontools isn't packaged for ARM? The only thing I can think of then is to run dmesg and see if there's any I/O errors. If there isn't it's probably fine.

Literally whom is that and why are they doing the King Barnett pose?

Attached: Kingstopher Barnett.jpg (200x362, 30.68K)

Great. Only errors that I received are predictable ones. If someone else knows of a better way, please let me know. Thanks for the help, user.

He is tech lead meme guy that hates Linux because he values his time too much. Ironic for his image to be used for OP.

Don't be a lazy bastard and do `sudo apt install smartmontools`.
Not native my ass.

Ah, my bad! Tried the wrong package name.

I feel like a retard for how long it took me but I finally got my wifi to work on Debian

This enrages and confuses the Archjeet

Attached: debian-testing.png (361x19, 4.35K)

/etc/apt/sources.list
deb deb.debian.org/debian bullseye main contrib non-free
>I feel like a retard
If it took you more than 10 seconds then yes.

To be fair it's a bit difficult to do that without working wifi. Doable but difficult. Debian makes these things needlessly overcomplicated.

Already tried it, my shit-top's wifi chip wasn't included. I ended up having to clone it from github.

If I want to run applications (in this case is snapd) in an isolated environment and allow the app to make changes only inside it, is there any viable alternative to a virtual machine? Could I use chroot? I've read that it's hard to make chroot or containers (dock.io) just werk with some applications.

Attached: 1643290275380.jpg (1065x1600, 1.37M)

That's because kids these days don't like to read anymore.
wiki.debian.org/Firmware
Even the installer asks you if you want to enable non-free repositories if it detects your hardware will not work.
But I'm glad you finally got it working, user.

you made it farther then probably 90% of people that try and install debian, congratz

Sorry, I thought you were the same user.
Well, anyway.

It's easy to make docker work with most applications. The app supports Debian or Ubuntu? Just start with a Dockerfile with that distro as a base and install all of the crap the app needs:
FROM debian

RUN apt-get update && apt-get install blah blah

CMD my-app

Now build it:
docker build -t local/my-app

Now run it:
docker run -d --name my-app local/my-app