Page 1 of 4 123 ... LastLast
Results 1 to 10 of 33

Thread: How do I enter Commands in the Terminal Please HELP

  1. #1
    Join Date
    Oct 2009
    Location
    A world without windows
    Beans
    Hidden!

    Talking How do I enter Commands in the Terminal Please HELP

    Can any One Show Me How To Enter Commands in the Ubuntu Terminal

    I am Total Novice at This

    The first line is very confusing ?

    it Shows alexfish-ubuntu@not-win7-or-bing-desktop:~$

    Screen shot attached



    Hi all

    [ SOLVED] Can any One Show Me How To Enter Commands in the Ubuntu Terminal

    Thanks for All the input ,Interesting Reading / and fun to

    Just in TIME FOR CHRISTMAS
    Attached Images Attached Images
    Last edited by alexfish; December 21st, 2009 at 03:12 PM.
    Two tin cans are better than an iphone

    http://www.ehow.co.uk/how_2067160_ma...hone.html?cr=1

  2. #2
    pwnst*r is offline Gee! These Aren't Roasted!
    Join Date
    Mar 2009
    Beans
    Hidden!

    Re: How do I enter Commands in the Terminal Please HELP

    rofl.

  3. #3
    Join Date
    Feb 2007
    Beans
    784
    Distro
    Ubuntu Development Release

    Re: How do I enter Commands in the Terminal Please HELP

    alexfish-ubuntu@not-win7-or-bing-desktop:~$

    is called the 'prompt'. It can be changed but basically it shows your username and the machine you are on (and the ~ means you are in your home folder). The $ is the end of the prompt. You type (or paste) commands there. Note - in gnome-terminal you can use ctl-shift-v to paste things
    To err is human, but not uniquely so.

  4. #4
    wojox is offline I Ubuntu, Therefore, I Am
    Join Date
    Apr 2009
    Beans
    8,628

    Re: How do I enter Commands in the Terminal Please HELP


  5. #5
    Join Date
    Jul 2008
    Location
    /dev/null
    Beans
    Hidden!

    Re: How do I enter Commands in the Terminal Please HELP

    Code:
    yes "windows " | tr -d "\n"

  6. #6
    Join Date
    Oct 2009
    Location
    A world without windows
    Beans
    Hidden!

    Re: How do I enter Commands in the Terminal Please HELP

    Quote Originally Posted by wojox View Post



    To run a command as administrator (user "root"), use "sudo <command>".
    See "man sudo_root" for details.

    alexfish-ubuntu@not-win7-or-bing-desktop:~$ sudo gobbledegook blah_blah -w -t -f aWkward/ComBinationOf/mixedCase/underscores_strokes/and.dots
    [sudo] password for alexfish-ubuntu:
    sudo: gobbledegook: command not found
    alexfish-ubuntu@not-win7-or-bing-desktop:~$

    EH
    Two tin cans are better than an iphone

    http://www.ehow.co.uk/how_2067160_ma...hone.html?cr=1

  7. #7
    Join Date
    Nov 2009
    Location
    Bullet Hell
    Beans
    Hidden!

    Re: How do I enter Commands in the Terminal Please HELP

    Quote Originally Posted by alexfish View Post
    To run a command as administrator (user "root"), use "sudo <command>".
    See "man sudo_root" for details.

    alexfish-ubuntu@not-win7-or-bing-desktop:~$ sudo gobbledegook blah_blah -w -t -f aWkward/ComBinationOf/mixedCase/underscores_strokes/and.dots
    [sudo] password for alexfish-ubuntu:
    sudo: gobbledegook: command not found
    alexfish-ubuntu@not-win7-or-bing-desktop:~$

    EH
    *facepalm* That was an obvious "example" and not a real command.

  8. #8
    pwnst*r is offline Gee! These Aren't Roasted!
    Join Date
    Mar 2009
    Beans
    Hidden!

    Re: How do I enter Commands in the Terminal Please HELP


  9. #9
    Join Date
    Sep 2009
    Location
    world 3 level 8
    Beans
    75
    Distro
    Ubuntu 9.10 Karmic Koala

    Re: How do I enter Commands in the Terminal Please HELP

    sudo ice-cream is my fav

  10. #10
    Join Date
    Jul 2007
    Location
    Reykjavík, Iceland
    Beans
    1,555
    Distro
    Ubuntu 10.04 Lucid Lynx

    Re: How do I enter Commands in the Terminal Please HELP

    this is utterly useless, but I guess you are just trying to feel comfortable with entering commands.. so try these.

    this is pretty much just: learn by example.
    Code:
    whoami
    sudo su <and enter your password blindly>
    whoami
    exit
    whoami
    
    ps -e
    ps -e | more
    ps -e | less
    ps -e | grep gnome
    ps -e | grep gnome | head -3
    
    ls
    ls -a
    ls -a | grep gnome
    ls -a | grep g..me
    ls -a | grep g.me
    ls -a | grep ^[A-Z]
    ls -a | grep ^[0-9]
    ls -a | grep [0-9]$
    ls -R | grep png$
    
    man ls
    man ps
    man grep
    like I said, there is no real life gain from this... well perhaps sometimes... specially if you are automating somethings by scripts.

    commands are nothing more than


    name_of_a_program -flag name/of/a/file/or-other-imput

    ohh ok I'll show you some useful things.

    Code:
    firefox www.ubuntuforums.org
    firefox www.ubuntuforums.org &
    
    wget http://imgs.xkcd.com/comics/sandwich.png
    eog sandwich.png 
    rm sandwich.png
    eog sandwich.png
    well... the other stuff will change some things.
    Last edited by Bölvağur; December 15th, 2009 at 04:18 PM.

Page 1 of 4 123 ... LastLast

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
  •