Meme transcription: Anakin & Padme

[Panel 1] Anakin tries selects “Update and shut down” from the Windows start menu.

[Panel 2] Padme, labeled as “Windows”, cheerily says: ”You mean ‘Update and restart’, right?”

[Panel 3] Anakin takes an annoyed look.

[Panel 4] Padme, still cheery, says “I’ll just ‘Update and Restart’.”

  • Captain Aggravated@sh.itjust.works
    link
    fedilink
    arrow-up
    4
    arrow-down
    1
    ·
    9 months ago

    These days the learning curve for Linux isn’t all that steep; I’ve tricked people into thinking my Linux Mint machine was running “Windows 9.” What you should expect are culture shocks. We’re going to call things different names, some things are done differently. Where Windows has “shortcuts” Linux has “Links” (to files) and “Launchers” (to run programs). Same functionality, two concepts instead of one. We actually use our app store, but since everything in there is free we don’t call it a “store,” we call it a “package manager.”

    As for the ‘terminal “language”,’ let’s demystify this a bit. Yes, the Command Line Interface does consist of a more or less complete programming language with loops and conditionals and such, but all that isn’t really necessary to use it as a basic user interface. It’s actually pretty simple.

    You type the name of a program, hit enter, and it runs that program.

    Like if I want to open VLC from the terminal, I can just type vlc and hit enter.

    There are some nuances to it but that’s generally it.

    For example, let’s say I want to listen to the very hottest new track by my favorite band in VLC, and for some reason I want to use the terminal instead of clicking the mouse a bunch of times. I can type vlc /Music/don't_you_want_me_baby.mp3 into the terminal and VLC will open and immediately begin playing that track. But what if just one run of the song isn’t enough? What if I want to hear the groundbreaking sound of The Human League over and over? I can add --repeat to the command as an option, and it will repeat the track endlessly. Options will either be one dash and one letter, or two dashes and a word. -R is the same as --repeat in this case. If you want to know what the options are for a given program, you can type [program name] --help. I used vlc --help to find out about the --repeat option.

    That’s mostly how you’re going to use the terminal at first, by typing the name of the program you want to run, and maybe some options or arguments (–repeat is an option, the name of the file is an argument).

    You can, of course, open up the file explorer to your Music folder and double click the file you want to hear, or launch VLC from the app menu and drag and drop the file, or click Open and deal with the dialog, the GUI exists for a reason. Where you’re probably going to encounter the terminal early on in your Linux journey is when you’re having some problems, and you ask for help on a forum or Lemmy community or something. The experienced Linux users who offer to help will ask you to run a terminal command and copy-paste its output. Because it’s fast and easy for you to copy-paste the command I want you to run, and the text it spits out as output. Compared to “Right click on the task bar and click Properties, then go to Devices and click Driver Manager…”

    As for whether a noob like you will survive on Linux for gaming: At this point it still depends on your taste in games, because especially competitive multiplayer shooters often exclude Linux on purpose because “something something anticheat.” I play a lot of indie and small studio games, single player or cooperative multiplayer, stuff like Stardew Valley, Factorio, Subnautica, Unrailed. These work great, and to get up and running I have to do less on Linux than on Windows.

    My recommendation: Download VirtualBox, download Linux Mint Cinnamon Edition, and run Linux in a virtual machine. Give it a try. You might like it.