Speaking of the last posts, lets keep it civil guys.
Run random commands until you break some shit
Follow me for more Linux tips
sudo rm -rf /
Write a script to delete every 5th file under /etc/.
EDIT: did it for you
#!/bin/bash count=0 for file in $(find /etc/ -type f); do (( count+=1 )) if (( $count % 5 == 0 )); then sudo rm -rf $file fi done
And now you have lots of stuff to fix and configure. You’re welcome!
Well that just got added to my interview question bank…heh.
Nothing left to configure? Install Gentoo!
Go help other people in forums
I do and its is very satisfying. Even though its very basic stuff.
Wanna help me right now configuring Nextcloud server on NixOS? Hehe
You can search up nextcloud flake and it will have all of the needed stuff, plus in the nixos search if you go to NixOS options you can see what config options it has
For some reason it’s saying it doesn’t have access to the config files that itself created. I checked permissions and Nextcloud user has the ownership of the config fikes