I thought it’d be a pain but installing programs through the terminal is actually so nice, I never would have expected it
Niw you are doomed and there is no going back. Welcome to the gang;)
If you or someone you know wants a taste of that experience on Windows, try out winget or chocolatey.
As an administrator, powershell is an essential tool these days. There are tunables that Microsoft simply only exposes via powershell even in their cloud Microsoft 365 environments. Just last month I had to rely on Powershell to trim previous versions on SharePoint, and 2 weeks ago I had to use Powershell to adjust a parameter on Exchange.
But also being able to pop a Powershell session and quickly apply a registry fix or run a diagnostic command or even just install a piece of software without disrupting a user’s work is absolutely brilliant (plus saves a call when I can just email back and say “I’ve pushed it remotely, reboot and it should be sorted now”)
Honestly, it’s a pain in the ass. The shortcuts are different from the browser, so you forget and hit Ctrl+V. Then you remember and hit Ctrl+Shift+V and get some scribbles around what you were typing
I installed mint yesterday and am having a PAIN installing anything not in the software manager. Currently stuck on teamspeak as my first thing to try. Got a tar.gz and can’t find anything well explained online (as of yet, it was already 3 hours just to get mint to dual boot and I was exhausted)
https://flathub.org/ is a great way to manage linux apps/programmes. Very easy and several other benefits
With .tar.gz software usually the steps are:
- Extract the archive
- Find a file with the .sh extention - that’s the shell script. It will most likely be named something like install.sh
- Make it executable - by right clicking and enabling it in the properties or by opening a terminal in this folder and using a command:
chmod +x install.sh
- Run the installer in the terminal:
./install.sh
It might ask you to run it as root and quit. In that case put a sudo before the command above and it will ask you for your password
sudo ./install.sh
And tbat’s it, installation should begin. Follow the instructions in your terminal.
Just wait until you find the fun TUI utilities, ill share a few:
- Shell: Fish (has powerful auto-complete, very fast, written in rust)
- Montior: Btop (monitors all system resources and processes)
- Fetch: Fastfetch (perfect for showing off on !unixporn@lemmy.world, for !unixsocks@lemmy.blahaj.zone Hyfetch is reccomnded)
- Brower: BrowSH (its a browser in your terminal)
- Text Editor: Vim (the best text editor, remeber to use esc + : + q to close or wq to write close vim. However when you open vim you can never quit)
- File manager: Ranger (if cd + ls is too inconvenient)
- Games (yes you can even play games in the terminal): 2048, Chess-TUI, NSnake, and Micro Tetris