LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 12-23-2014, 01:01 PM   #16
/dev/random
Member
 
Registered: Aug 2012
Location: Ontario, Canada
Distribution: Slackware 14.2, LFS-current, NetBSD 6.1.3, OpenIndiana
Posts: 319

Rep: Reputation: 112Reputation: 112

Quote:
Originally Posted by rdandrea View Post
when i click on files it shows me..wait for it.. files. not the "contents" of the drive. no program files folder, no temp folder, no systems folder. just pictures, downloads, videos etc
UNIX/LINUX is a bit different then Microsoft Windows in this respect.

What you are currently seeing is the contents of your home directory. Linux partitions things in its tree structure like so:

Code:
/     (The very start)
/bin  (where basic/system commands hide out)
/boot (where the kernel and bootloader like the hang out)
/home  (where your "user profile" chills, this is where you are now)
/opt  (optional software)
/lib  (libararies and drivers are found)
/mount (where USB, protable harddrives and other such temporary devices reside)
/mnt  (long term mounted file systems (like samba or nfs)
/sbin (these are where administrative programs are kept, only root has access to these)
/srv  ( this is used to serve static content)
/tmp  (Where the temporary fies like to chill)
/usr  (more common binaries are found (I guess you could call this the "program files" of the UNIX world)
/usr/local (things that get installed by the admin or users of group "wheel" these are programs that do not come stock with the linux distro you have)
/var  (for varible data)
 
1 members found this post helpful.
Old 12-23-2014, 01:09 PM   #17
pan64
LQ Addict
 
Registered: Mar 2012
Location: Hungary
Distribution: debian/ubuntu/suse ...
Posts: 21,913

Rep: Reputation: 7318Reputation: 7318Reputation: 7318Reputation: 7318Reputation: 7318Reputation: 7318Reputation: 7318Reputation: 7318Reputation: 7318Reputation: 7318Reputation: 7318
yes, by default is it your home directory, you need to navigate... Press F9 to open left pane.
 
Old 12-23-2014, 01:24 PM   #18
fatmac
LQ Guru
 
Registered: Sep 2011
Location: Upper Hale, Surrey/Hants Border, UK
Distribution: Mainly Devuan, antiX, & Void, with Tiny Core, Fatdog, & BSD thrown in.
Posts: 5,501

Rep: Reputation: Disabled
Use a terminal, type in
Code:
ls /
to see what folders you have, then
Code:
ls /<foldername>
to see the contents of <foldername>

If you want everthing at once, try
Code:
ls -R /
(it will keep on scrolling)
To make a file of it, try
Code:
ls -R / > mydisk
then type
Code:
less mydisk
to look at it in a pager.
 
Old 12-23-2014, 02:22 PM   #19
Miati
Member
 
Registered: Dec 2014
Distribution: Linux Mint 17.*
Posts: 326

Rep: Reputation: 106Reputation: 106
Quote:
Originally Posted by rdandrea View Post
when i click on files it shows me..wait for it.. files. not the &quot;contents&quot; of the drive. no program files folder, no temp folder, no systems folder. just pictures, downloads, videos etc
Your windows background is not helping you here. There is no program files, temp or systems folder in your home directory.
program and system files are largely located at /usr/bin, temp is located at /tmp. Linux is not Windows

The contents of all drives is located at /
The contents of your home directory (which I already described) is located at /home/$USER or ~/

Last edited by Miati; 12-23-2014 at 11:58 PM.
 
Old 12-23-2014, 09:39 PM   #20
rdandrea
LQ Newbie
 
Registered: Dec 2014
Posts: 14

Original Poster
Rep: Reputation: Disabled
how the hell do i "navigate an internal hard disk drive" using the Operating System Linux Unity interface? is that vernacular acceptable to the gurus?
 
Old 12-24-2014, 12:10 AM   #21
Miati
Member
 
Registered: Dec 2014
Distribution: Linux Mint 17.*
Posts: 326

Rep: Reputation: 106Reputation: 106
Quote:
Originally Posted by rdandrea View Post
how the hell do i "navigate an internal hard disk drive" using the Operating System Linux Unity interface? is that vernacular acceptable to the gurus?
You seem to be perceiving hostility & elitism when we're trying to help.

You stated yourself that you can access /home/$USER by mentioning the video, picture, etc folders. A varied amount of useful information has been given to you that is relevant to your problem. It will require getting a basic understanding of the linux filesystem, some of which has already been posted.
However, you are implementing windows hierarchy into linux and I have no doubt this is adding to your frustration.

Quote:
but i for one am very happy someone invented a user interface!
As am I (cinnamon is amazing - you might actually find it more easy to transfer to) but don't discount entering commands in a terminal as archaic, difficult and obsolete. The linux terminal is incredibly efficent & powerful as opposed to DOS and is a primary reason why I use linux.

In any case -
Take a moment, spend some time reading through the posts and provided links throughly and give it a neutral shot.

Last edited by Miati; 12-24-2014 at 12:27 AM.
 
Old 12-24-2014, 03:43 AM   #22
Soadyheid
Senior Member
 
Registered: Aug 2010
Location: Near Edinburgh, Scotland
Distribution: Cinnamon Mint 20.1 (Laptop) and 20.2 (Desktop)
Posts: 1,673

Rep: Reputation: 487Reputation: 487Reputation: 487Reputation: 487Reputation: 487
Quote:
how the hell do i "navigate an internal hard disk drive" using the Operating System Linux Unity interface? is that vernacular acceptable to the gurus?
Sounds like a simple question, huh? In Windows you just click on "Computer" which is on the desktop you get a window which shows the disks; "System (C: )", "DVD RW (D: )", "Removable Disk (E: ), etc. Click on "System (C: )" and there you go, all the files on your C: disk.

Linux doesn't work that way. You'd navigate the filesystem, not a disk. There is no "Disk C": in Linux. Looking at a particular disk in Linux doesn't actually have the same meaning as in Windows as the Linux filesystem can be spread across several disks.

/dev/random's filesystem listing in post #16 above is pretty good - but you don't need to know this to use Linux just like you don't need to know the Windows filesystem to this depth to use Windows.

In Windows, all your stuff is usually kept in C:\User\<Your Username>, in Linux it's in /home/<Your Username>, notice, no disk.

It's been mentioned at least a couple of times in previous posts in this thread but I think you really should read the article Linux is NOT Windows to get an idea of the different concepts. (Check the link)

One of your problems is the Unity desktop environment in Ubuntu which quite a lot of Linux people aren't keen on, me included. Nope! I couldn't tell you how to find out whats on a disk with it either. I'd advise trying Linux Mint 17 instead of Ubuntu, the Cinnamon Desktop may be close enough to Windows Explorer (It has a start menu!) to ease you into Linux.

Your frustrations are because you're speaking a different language; "Windows", where the answer you're getting back is "Linux" which is giving rise to the "Shout loudly and wave your arms about" responses.

Check out "Linux is NOT Windows" and try Mint instead of Ubuntu. We'll help where we can.

Play Bonny!


Last edited by Soadyheid; 12-24-2014 at 03:45 AM.
 
Old 12-24-2014, 04:02 AM   #23
pan64
LQ Addict
 
Registered: Mar 2012
Location: Hungary
Distribution: debian/ubuntu/suse ...
Posts: 21,913

Rep: Reputation: 7318Reputation: 7318Reputation: 7318Reputation: 7318Reputation: 7318Reputation: 7318Reputation: 7318Reputation: 7318Reputation: 7318Reputation: 7318Reputation: 7318
Quote:
Originally Posted by rdandrea View Post
how the hell do i "navigate an internal hard disk drive" using the Operating System Linux Unity interface? is that vernacular acceptable to the gurus?
That's what I explained. Have you tried that already? (see post #17)
 
Old 12-24-2014, 11:55 AM   #24
DavidMcCann
LQ Veteran
 
Registered: Jul 2006
Location: London
Distribution: PCLinuxOS, Debian
Posts: 6,142

Rep: Reputation: 2314Reputation: 2314Reputation: 2314Reputation: 2314Reputation: 2314Reputation: 2314Reputation: 2314Reputation: 2314Reputation: 2314Reputation: 2314Reputation: 2314
Well Rick, I at least sympathise with you! As I said in my last post, however useful the command line may be, you don't need to rush into using it.

You've found your home directory, with all your personal data. If you use the option to show hidden items in the file manager, you'll see it also has a lot of files and folders whose names begin with a dot: those contain the configuration data for your programs. They are hidden to keep them out of your way, as you will normally modify them from the programs they serve. In other words, all the personal material is in /home.

The other stuff you wouldn't normally need to access directly, either. You run the programs from the menu (or by setting up keyboard shortcuts), install new programs with a package manager, configure hardware (networking, clock, removable devices) with the tools provided. You only need to rummage around in the hard drive on vary rare occasions. It certainly won't show you what software you have — it doesn't all live in a Program Files directory. But the menu will show you. Personally I found the Unity menu clunky, which is why I thought you might prefer something different.

To sum up, stop thinking "how to I get at the files" and start thinking "what in the menu does the job I want to do". There's plenty of documentation on offer, if you really like Ubuntu:
https://help.ubuntu.com/community/Co...rDocumentation

If you have a specific problem, rather than "how do I access my hard drive", post that problem, and you'll get an answer. Probably not from me though, as the latest versions of Ubuntu won't even install on this computer and I'm forgetting the older ones!
 
Old 12-24-2014, 06:49 PM   #25
rdandrea
LQ Newbie
 
Registered: Dec 2014
Posts: 14

Original Poster
Rep: Reputation: Disabled
Ok, thank you all for your help..I mean that sincerely! But everyone is suggesting i use a "terminal". Awesome!! Where the f@*k is it??!! I do notttt have a command line on the unity page!!! There is no, repeat, no place for me to enter any commands!! F9 does nothing. Everyone talks about a "terminal" great where is it? There is no option to see any hidden files in the "files" folder. Ok i get Linux uses a files system dir and not a disk dir... How do I access it without a command line? Probably going to switch to another distribution, is that the correct usage? I really hate to offend anyone with my ignorance! But until I can understand the basics, switch might not help me much.
Again I want to thank everyone who has taken the time to try and educate this old goat in trying to teach myself a new trick! And to everyone have a Wonderful Christmas!! And if you have another faith the same wishes apply!
 
Old 12-24-2014, 07:38 PM   #26
descendant_command
Senior Member
 
Registered: Mar 2012
Posts: 1,876

Rep: Reputation: 643Reputation: 643Reputation: 643Reputation: 643Reputation: 643Reputation: 643
A terminal is just another application that you can start the same way you do everything else in Unity.
I'm not really familiar with it but the docs linked previously should explain it in easy terms.
The file manager (dolphin) that shows you your home directory contents is also the thing that shows you any files in the system.
Check it's options for getting a different view or extra tree view on the left to make it look a bit more familiar.
There should be a "Root" shortcut in the default left pane that will show the root of the filesystem, along with links to mounted filesystems ("drives") so I'm really not sure where your problem lies - I think you are overthinking things and making it harder for yourself than it needs to be, it's really not.
Just don't try to apply your windows experience and don't be afraid to RTFM.

Last edited by descendant_command; 12-24-2014 at 07:41 PM.
 
Old 12-24-2014, 08:03 PM   #27
Fred Caro
Senior Member
 
Registered: May 2007
Posts: 1,007

Rep: Reputation: 167Reputation: 167
Unity (really meant for tablets and phones) shortcut for terminal on unity is, ctrl+alt+T.(no fullstop)

If you go to 'computer' on win7 it will take you to windoze explorer. a gui interpreter, and you go through the levels, such as they are.

On the gnome desktop in debian (gnome classic) you go to 'places' 'computer' 'filesystem' you will see the linux file system as interpreted by the gnome gui. See hidden files under the view menu, or select just those in your home/me dir with 'echo .*' no quotes from a terminal.

It's not rocket science but helps if you have not come from assumptions gained with windows, perhaps the confusion comes from the fact that "linux" is a multiuser distro and win pc is primarily not?

Fred.
 
Old 12-24-2014, 09:27 PM   #28
rdandrea
LQ Newbie
 
Registered: Dec 2014
Posts: 14

Original Poster
Rep: Reputation: Disabled
update!

ok, i have some good news. since Unity doesn't come with a "terminal" button, a friend suggested I do a search for 1 in the dash thing. Which I did. And guess what...wait for it..I found a TERMINAL!!!! woohooo! I was wrong to assume that a flock, herd, murder..(not sure the correct nomenclature here, forgive me!) group of distributions of similar design, that manly caters to the very tech oriented crowd would supply a way to interface with the system right on it's GUI. Man was I wrong to assume that!!
I have to now assume that any function I need to actually use I need to do a search for them. Well at least I have a starting point! I can now type in all those wonderful suggestions you fine gentlemen have so graciously given me!! Thank you all once again!
 
Old 12-24-2014, 09:34 PM   #29
rdandrea
LQ Newbie
 
Registered: Dec 2014
Posts: 14

Original Poster
Rep: Reputation: Disabled
cool thanks fred that helps a lot. where u born with that ctr+alt+T in your head? did it come with the paphlet u downloaded when u installed your first linux system? if not please tell me how you came buy thet knowledge. like i said in my header I AM A COMPLETE NEWBIE!! How am I supposed to know that ctl+alt+T would bring up a terminal shell??!! I have been asking for 2 days for someone to tell me just how to bring up a command line/terminal because, like I have said many times UNITY DOES NOT HAVE A TERMINAL on its desktop!
 
Old 12-24-2014, 09:36 PM   #30
rdandrea
LQ Newbie
 
Registered: Dec 2014
Posts: 14

Original Poster
Rep: Reputation: Disabled
not rocket science, no it isn't, but at lease most rocket scientists aren't given the parts to a rocket and told to make one without going to college first. also like i said before, at least legos come with a booklet to help you put together that toy car
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Diff File contents while reading using "cat" and "more" maitree@123 AIX 3 07-31-2014 08:59 AM
problem booting from external hard drive "cannot find device" fumungacheese Linux - Laptop and Netbook 8 06-14-2011 05:30 PM
"load error!" - suse 10.1 won't boot from hard drive Groovedaddy Linux - Newbie 2 11-17-2007 10:31 AM
K3b: - Howto re-dock "Directories" and "Contents" windows back into the main window? hagies Linux - Software 4 04-26-2006 08:38 AM
Mandrake 10.1 - Linux doesn't "see" free hard drive space scottlyter Linux - General 3 10-15-2004 04:39 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 08:50 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration