LinuxQuestions.org
Visit Jeremy's Blog.
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 07-29-2018, 04:22 PM   #1
DalcorpSC
LQ Newbie
 
Registered: Jul 2018
Posts: 1

Rep: Reputation: Disabled
Terminology


I'm a brand new linux mint user and was a windows user before. Used several versions of windows and got used to their terminology.
Switched to linux cause with windows the newer it got the more it ate up my memory and was always getting bogged down.

I'm having trouble understanding what the simple things mean. I read the explanation of what mount/umount means here. It was great and now I know what it means. When I get a list together I'll ask questions.

It is great there is a place you can ask questions and get answers.
 
Old 07-29-2018, 04:32 PM   #2
m.a.l.'s pa
Member
 
Registered: Oct 2007
Location: albuquerque
Distribution: Debian, Arch, Kubuntu
Posts: 366

Rep: Reputation: 139Reputation: 139
This takes me back to learning to think "directory" instead of "folder". Many Linux users use the two words interchangeably, though.
 
1 members found this post helpful.
Old 07-29-2018, 05:16 PM   #3
TheEzekielProject
Member
 
Registered: Dec 2016
Distribution: arch
Posts: 668

Rep: Reputation: 190Reputation: 190
Just so you are aware, you can generally type
Code:
man <command name>
to find out all about it. e.g.
Code:
man mount
in a terminal.

Welcome to the Wonderful World of Linux!

Good luck!
 
1 members found this post helpful.
Old 07-29-2018, 06:02 PM   #4
syg00
LQ Veteran
 
Registered: Aug 2003
Location: Australia
Distribution: Lots ...
Posts: 21,137

Rep: Reputation: 4122Reputation: 4122Reputation: 4122Reputation: 4122Reputation: 4122Reputation: 4122Reputation: 4122Reputation: 4122Reputation: 4122Reputation: 4122Reputation: 4122
And to save some angst, use q (as in quit) to exit the manpage.
There is a manpage for man itself of course.

There's gotta be a rosetta stone page somewhere on the net for Win/Linux terminology.
 
1 members found this post helpful.
Old 07-29-2018, 08:02 PM   #5
frankbell
LQ Guru
 
Registered: Jan 2006
Location: Virginia, USA
Distribution: Slackware, Ubuntu MATE, Mageia, and whatever VMs I happen to be playing with
Posts: 19,341
Blog Entries: 28

Rep: Reputation: 6145Reputation: 6145Reputation: 6145Reputation: 6145Reputation: 6145Reputation: 6145Reputation: 6145Reputation: 6145Reputation: 6145Reputation: 6145Reputation: 6145
This site has some nice tutorials and references: https://www.lifewire.com/learn-how-linux-4102755

Welcome to LQ.
 
1 members found this post helpful.
Old 07-29-2018, 09:53 PM   #6
chrism01
LQ Guru
 
Registered: Aug 2004
Location: Sydney
Distribution: Rocky 9.2
Posts: 18,362

Rep: Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751
... and if you prefer a web version http://linux.die.net/man/

Note however that the defintive version is whatever is shipped on your system. You can try 'apropos <subject> ' which is really 'man -k <subject>'
 
Old 07-30-2018, 08:07 AM   #7
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
@syg00

Quote:
There's gotta be a rosetta stone page somewhere on the net for Win/Linux terminology.
Found this for Unix, enlightening but nae Windows!

This for Windows/Ubuntu/MacOS.

Hope it helps!

Play Bonny!

 
Old 07-30-2018, 08:48 AM   #8
hazel
LQ Guru
 
Registered: Mar 2016
Location: Harrow, UK
Distribution: LFS, AntiX, Slackware
Posts: 7,604
Blog Entries: 19

Rep: Reputation: 4458Reputation: 4458Reputation: 4458Reputation: 4458Reputation: 4458Reputation: 4458Reputation: 4458Reputation: 4458Reputation: 4458Reputation: 4458Reputation: 4458
I made a little Linux dictionary for myself, which I would be happy to share, but I can't upload it here because the attachments manager doesn't allow tarballs I'm pretty sure it used to do so.
 
1 members found this post helpful.
Old 07-30-2018, 10:47 AM   #9
BenTrabetere
LQ Newbie
 
Registered: Jul 2015
Location: Mississippi, USA
Distribution: Linux Mint Mate
Posts: 20

Rep: Reputation: Disabled
Linux Mint has a hidden gem - the GNOME help viewer, Yelp. It is poorly documented, and almost everything I learned about it was by accident. One of those accidents was it can be launched from a terminal and used to view man-pages - I find it is much easier to read and navigate a man-page with Yelp than from the terminal output.

Code:
yelp man:<program>
For example, to view the man-page for mount, use
Code:
yelp man:mount
 
1 members found this post helpful.
Old 07-30-2018, 11:28 AM   #10
hazel
LQ Guru
 
Registered: Mar 2016
Location: Harrow, UK
Distribution: LFS, AntiX, Slackware
Posts: 7,604
Blog Entries: 19

Rep: Reputation: 4458Reputation: 4458Reputation: 4458Reputation: 4458Reputation: 4458Reputation: 4458Reputation: 4458Reputation: 4458Reputation: 4458Reputation: 4458Reputation: 4458
Got it! I've put it into one file, attached. You can replace the txt extension by html, then view in a browser.
Attached Files
File Type: txt dictionary.txt (47.4 KB, 41 views)
 
2 members found this post helpful.
Old 07-30-2018, 08:36 PM   #11
syg00
LQ Veteran
 
Registered: Aug 2003
Location: Australia
Distribution: Lots ...
Posts: 21,137

Rep: Reputation: 4122Reputation: 4122Reputation: 4122Reputation: 4122Reputation: 4122Reputation: 4122Reputation: 4122Reputation: 4122Reputation: 4122Reputation: 4122Reputation: 4122
Quote:
Originally Posted by BenTrabetere View Post
It is poorly documented, and almost everything I learned about it was by accident.
Maybe not just the documentation. On my system it takes quite a while to complete "exit" - I started to look at a strace but figured walking the dog would make more sense ...
 
Old 07-30-2018, 09:16 PM   #12
frankbell
LQ Guru
 
Registered: Jan 2006
Location: Virginia, USA
Distribution: Slackware, Ubuntu MATE, Mageia, and whatever VMs I happen to be playing with
Posts: 19,341
Blog Entries: 28

Rep: Reputation: 6145Reputation: 6145Reputation: 6145Reputation: 6145Reputation: 6145Reputation: 6145Reputation: 6145Reputation: 6145Reputation: 6145Reputation: 6145Reputation: 6145
As sort of an afterthought, here are the two basic bits of Linux terminology that tantalized me the most when I started with Linux.

In Linux, you do not delete (del) a file, you remove (rm) it. There is a del command, but rm is preferred.

You do not rename (ren) a file, you move (mv) it from one name to another. Of course, you can also move it from one directory to another without renaming it. If you are moving it to another directory, be sure to include the trailing slash (/) at the end of the path, or you will be attempting to rename it to the directory's name.

Code:
mv [somefile] [/path/to/directory/]   <---moves file
mv [somefile] [/path/to/directory   <---tries to rename it "directory" located in [/path/to/]
Learn how to use the man (manual) pages. They are generally not very useful for learning and can't be thought of as tutorials in any sense, but they are excellent references. See man man for more.

Last edited by frankbell; 07-30-2018 at 09:25 PM.
 
Old 07-31-2018, 01:43 AM   #13
JJJCR
Senior Member
 
Registered: Apr 2010
Posts: 2,158

Rep: Reputation: 449Reputation: 449Reputation: 449Reputation: 449Reputation: 449
shutdown now --> works pretty okay if you don't want your users to connect

Win is shutdown -s -f -t 03 a lot of parameters to remember

In Linux rm -rf \ if you don't want your system anymore

In Win format c: /q if you want to get rid of everything very quickly

In Linux quite important to remember "man" and "info" command.

Last edited by JJJCR; 07-31-2018 at 01:44 AM. Reason: edit
 
Old 07-31-2018, 02:11 AM   #14
hazel
LQ Guru
 
Registered: Mar 2016
Location: Harrow, UK
Distribution: LFS, AntiX, Slackware
Posts: 7,604
Blog Entries: 19

Rep: Reputation: 4458Reputation: 4458Reputation: 4458Reputation: 4458Reputation: 4458Reputation: 4458Reputation: 4458Reputation: 4458Reputation: 4458Reputation: 4458Reputation: 4458
Quote:
Originally Posted by frankbell View Post
As sort of an afterthought, here are the two basic bits of Linux terminology that tantalized me the most when I started with Linux.

In Linux, you do not delete (del) a file, you remove (rm) it. There is a del command, but rm is preferred.
That's surely just a difference in the name.
Quote:
You do not rename (ren) a file, you move (mv) it from one name to another. Of course, you can also move it from one directory to another without renaming it.
That's a real difference. Using mv for both operations is an insight into what actually happens when you "move" a file. The file doesn't move (unless the new parent directory is on another drive), but its name and location (inode) is moved into another directory. Directories aren't really folders, they're indexes and Linux shows you that.
Quote:
If you are moving it to another directory, be sure to include the trailing slash (/) at the end of the path, or you will be attempting to rename it to the directory's name.
I never use a trailing slash. mv works perfectly well without it. It's smart enough to recognise if the destination is a directory, and it will then move the source file into it.
 
Old 07-31-2018, 09:47 AM   #15
rknichols
Senior Member
 
Registered: Aug 2009
Distribution: Rocky Linux
Posts: 4,780

Rep: Reputation: 2214Reputation: 2214Reputation: 2214Reputation: 2214Reputation: 2214Reputation: 2214Reputation: 2214Reputation: 2214Reputation: 2214Reputation: 2214Reputation: 2214
Quote:
Originally Posted by hazel View Post
Using mv for both operations is an insight into what actually happens when you "move" a file. The file doesn't move (unless the new parent directory is on another drive), but its name and location (inode) is moved into another directory. Directories aren't really folders, they're indexes and Linux shows you that.
The inode doesn't move, either. All that happens is that a link to the existing inode is added in the new directory, and the link in the old directory is removed.
 
  


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
[SOLVED] Terminology disambiguation marcos egatz Linux - Newbie 3 07-19-2011 07:05 PM
Backup terminology Stin Linux - Newbie 2 05-13-2008 06:21 PM
Wireless Terminology cjcj Linux - Newbie 3 05-12-2008 11:50 AM
Terminology Confusion lazylogic Linux - Newbie 3 04-28-2008 02:00 PM
Understanding terminology digantk Linux - General 9 10-18-2002 06:27 PM

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

All times are GMT -5. The time now is 04:31 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