Results 1 to 2 of 2

Thread: help with following a tutorial?

  1. #1
    Join Date
    Mar 2008
    Location
    Sri lanka
    Beans
    764
    Distro
    Ubuntu 10.04 Lucid Lynx

    help with following a tutorial?

    Hello. I found a tutorial on these forums as this address
    http://ubuntuforums.org/showthread.p...hp/t-6421.html.
    I followed the tutorial up to the point where is says "To create the folder type (inside a new terminal) ...". (use Ctrl + f in firefox to find the place please.)

    I want to modify this to create a folder in another location. How can i modify this line of code to create a folder at the address "/home/mahela007/Public"? That is I want to create a folder inside the folder called public.

  2. #2
    Join Date
    Aug 2005
    Location
    South Carolina, USA
    Beans
    26,047
    Distro
    Ubuntu Development Release

    Re: help with following a tutorial?

    Open a terminal and do:
    Code:
    mkdir /home/mahela007/Public/nameofdirectory
    You can actually shorten this up a bit with ~ which is roughly shorthand for 'in the current user's home directory.' So the shortened version is:
    Code:
    mkdir ~/Public/nameofdirectory
    Of course, you could also open Places -> Home Folder and double click Public to open it and the go to File -> Create Folder. A folder will be created called 'untitled folder' which is greyed out, welcoming you to type in the name you really want.

    Of course the latter, GUI method looks easier but takes more steps than the terminal method. Sometimes you can do things easier in a terminal than with a GUI.
    "Oh, Ubuntu, you are my favorite Linux-based operating system" --Dr. Sheldon Cooper, B.Sc., M.Sc., M.A., Ph.D., Sc.D.

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
  •