Results 1 to 9 of 9

Thread: looking for a web site

  1. #1
    Join Date
    Oct 2010
    Beans
    87

    looking for a web site

    i evidently need to find a website that tells me the definitions of the scripts used in the command terminal, so far google has just lined me up with the definition of command terminal script. so where would i go to find terms like sudo, apt, etc. with definitions and maybe examples of usage so i can learn instead of relying on copy and paste.

  2. #2
    Join Date
    May 2018
    Location
    Here and There
    Beans
    Hidden!
    Distro
    Xubuntu Development Release

    Re: looking for a web site

    Man Pages would be a good place to start.
    Code:
    man sudo
    man apt
    It's a learning curve that can't be covered in a few short hours>>>Takes some time.
    I applaud your bravery for more terminal skills. It makes a world of difference in your Linux experience.
    "When you practice gratefulness, there is a sense of respect toward others." >>Dalai Lama

  3. #3
    Join Date
    Aug 2024
    Beans
    33

    Re: looking for a web site

    This looks helpful:
    https://ubuntu.com/tutorials/command-line-for-beginners

    I recommend going through the whole tutorial in sequence.

    As 1fallen2 suggested, you can use the man command to get detailed information about specific commands that you see there.
    Last edited by davetheoldcoder; October 11th, 2024 at 12:52 AM.

  4. #4
    Join Date
    Jul 2021
    Beans
    148

    Re: looking for a web site

    "Just because you can do it doesn't mean you should do it."

    "If it ain't broke don't fix it."


  5. #5
    Join Date
    May 2010
    Beans
    3,498

    Re: looking for a web site

    man pages are your friend. If you want them, in a browser then duckduckgo has the bang syntax. Eg:
    Code:
    !man sudo
    Will bring up the man page on the web. Very handy.

  6. #6
    Join Date
    Mar 2007
    Location
    Promiseland
    Beans
    1,730
    Distro
    Xubuntu 22.04 Jammy Jellyfish

    Re: looking for a web site

    where would i go to find terms like sudo, apt, etc. with definitions and maybe examples of usage
    You might consider checking out the link under my signature. The open source book can also be freely downloaded.
    Cheers,


    The Linux Command Line at https://linuxcommand.org/

  7. #7
    Join Date
    Oct 2009
    Location
    California
    Beans
    Hidden!
    Distro
    Ubuntu Studio 12.10 Quantal Quetzal

    Re: looking for a web site

    If you would like to learn more about bash scripting (assuming you are using bash) I highly recommend this guide
    Advanced Bash-Scripting Guide (tldp.org)

    It's not designed with eye candy to look pretty, but it is the best scripting guide i've come across.
    User:To friend or not to friend--that is the question:
    Whether 'tis nobler to take an arrow to the knee or to suffer
    the slights and add's of outrageous fortune
    Or to take arms against a sea of trolls And by opposing feed them. www.evicsis.com

  8. #8
    Join Date
    Oct 2010
    Beans
    87

    Re: looking for a web site

    i gotta do something, cutting and pasting terminal commands isn't working. it's like every image burning program i've tried doesnt want to work in 20.04. got unetbootin to install, but now i can't find it. it gives me these directions on how to run it.

    To run these binaries, download them and run the command chmod +x ./unetbootin-linux, or go to Properties->Permissions and check "Execute"), then start the application by running ./unetbootin-linux

    1) i have tried the terminal and got an error
    a@a-GA-78LMT-USB3-6-0:~$ chmod +x ./unetbootin-linux
    chmod: cannot access './unetbootin-linux': No such file or directory
    a@a-GA-78LMT-USB3-6-0:~$

    2) don't know what app to access to enter commands
    3) properties, i assumed that would be in the home file under the user name, i now assume i'm wromg. can't access it (the home file hidden files) for some reason. i was in there a couple weeks ago deleting my unsuccessful attempt to install steam.

    the videos i watched showed an installed gui for the program, i'm obviously going to have to create a shortcut after i find an .exe file (yes, i'm still thinking in windows terms)

    i'm also getting annoyed that proof reading seems to be a foreign concept to a lot of these "help pages" with the copy and paste script.

    thanks 1fallen2 and davetheoldcoder

  9. #9
    Join Date
    Aug 2024
    Beans
    33

    Re: looking for a web site

    Let's start with this:

    every image burning program i've tried doesnt want to work in 20.04. got unetbootin to install, but now i can't find it.
    You're running Ubuntu 20.04, and you want to make a bootable USB thumb drive from a downloaded .iso file?

    And running an installed application on Linux can depend on how you installed it, which you didn't explain.

    If you're new to Ubuntu, it's best to start with applications installed through the built-in package manager.

    Ubuntu's default application for flashing USB drives is Startup Disk Creator (package name usb-creator-gtk or usb-creator-kde, depending on whether you're using the Gnome desktop or the KDE desktop). Either of these will provide a GUI application that you can run by clicking a desktop launcher icon.

    To check if usb-creator-gtk is already installed, use this command;
    Code:
    dpkg --status usb-creator-gtk
    If it's installed, the output will include "Status: install ok installed" or something similar.
    Last edited by davetheoldcoder; October 16th, 2024 at 03:02 AM.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •