Debian GNU/Linux Crash Course -- Lesson 2
Loading...
6,878
Loading...
Uploader Comments (MartianStation)
see all
All Comments (8)
-
@Devourer09 Becaus of the Fact MacOS is Unix-Like too, you can install it on a Mac too!
-
@MartianStation What happens if you sudo apt-get remove sudo, then?
-
I learned a lot about file permissions from TLDP's Introduction to Linux HOWTO. I'm still reading through it. It's quite long.
-
thx, now i got it :)
Loading...
Isn't sudo specific to Ubuntu and not Debian?
Devourer09 2 years ago
No, sudo is available on most Linux type systems.
MartianStation 2 years ago
Really? I've only seen it with Ubuntu. So it's a program right so you could install it on any Linux system right?
Devourer09 2 years ago
Exactly. sudo is a program that you can install and set up. I'm going to do a lesson on how to do it on debian. In fact i think i'll do the next lesson on permissions and sudo.
MartianStation 2 years ago
thx, again very helpfull :)
but i have 2 questions:
- when i type find ... --> it seems it search only in the current directory and no subfolders are included into the search, what did i wrong?
- what is the shortcut for leaving manuel descriptions in the prompt (also needed for the less command, ...)
i misinterpret this word and also my brute force search failed :D
sry english is not my mother tongue ;)
Keep it up! I like ;)
Greetz Charas66
Charas66 3 years ago
Hi Charas66,
the find command follows the following syntax
find [options] [path] [expression]
so if you want to search ~/ for text you would type
find ~/ -name text*
you can also use the locate commands which does an indexed search.
As for exiting a man page or less hit q.
Hope that helps!
MartianStation 3 years ago