Skip to content

Commit af8a3e6

Browse files
authored
Merge pull request #282 from Integral-Tech/remove-unused-sudo
Remove unnecessary sudo
2 parents f3405fe + 6d9d127 commit af8a3e6

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

lkmpg.tex

+10-10
Original file line numberDiff line numberDiff line change
@@ -133,18 +133,18 @@ \subsection{What Modules are in my Kernel?}
133133

134134
To discover what modules are already loaded within your current kernel use the command \sh|lsmod|.
135135
\begin{codebash}
136-
sudo lsmod
136+
lsmod
137137
\end{codebash}
138138

139139
Modules are stored within the file \verb|/proc/modules|, so you can also see them with:
140140
\begin{codebash}
141-
sudo cat /proc/modules
141+
cat /proc/modules
142142
\end{codebash}
143143

144144
This can be a long list, and you might prefer to search for something particular.
145145
To search for the \verb|fat| module:
146146
\begin{codebash}
147-
sudo lsmod | grep fat
147+
lsmod | grep fat
148148
\end{codebash}
149149

150150
\subsection{Is there a need to download and compile the kernel?}
@@ -370,7 +370,7 @@ \subsection{The Simplest Module}
370370
371371
At this point the command:
372372
\begin{codebash}
373-
sudo lsmod | grep hello
373+
lsmod | grep hello
374374
\end{codebash}
375375
376376
should return nothing.
@@ -381,7 +381,7 @@ \subsection{The Simplest Module}
381381
382382
The dash character will get converted to an underscore, so when you again try:
383383
\begin{codebash}
384-
sudo lsmod | grep hello
384+
lsmod | grep hello
385385
\end{codebash}
386386
387387
You should now see your loaded module. It can be removed again with:
@@ -392,7 +392,7 @@ \subsection{The Simplest Module}
392392
Notice that the dash was replaced by an underscore.
393393
To see what just happened in the logs:
394394
\begin{codebash}
395-
sudo journalctl --since "1 hour ago" | grep kernel
395+
journalctl --since "1 hour ago" | grep kernel
396396
\end{codebash}
397397
398398
You now know the basics of creating, compiling, installing and removing modules.
@@ -1088,7 +1088,7 @@ \subsection{Unregistering A Device}
10881088
Normally, when you do not want to allow something, you return an error code (a negative number) from the function which is supposed to do it.
10891089
With \cpp|cleanup_module| that's impossible because it is a void function.
10901090
However, there is a counter which keeps track of how many processes are using your module.
1091-
You can see what its value is by looking at the 3rd field with the command \sh|cat /proc/modules| or \sh|sudo lsmod|.
1091+
You can see what its value is by looking at the 3rd field with the command \sh|cat /proc/modules| or \sh|lsmod|.
10921092
If this number isn't zero, \sh|rmmod| will fail.
10931093
Note that you do not have to check the counter within \cpp|cleanup_module| because the check will be performed for you by the system call \cpp|sys_delete_module|, defined in \src{include/linux/syscalls.h}.
10941094
You should not use this counter directly, but there are functions defined in \src{include/linux/module.h} which let you increase, decrease and display this counter:
@@ -1340,20 +1340,20 @@ \section{sysfs: Interacting with your module}
13401340
Check that it exists:
13411341

13421342
\begin{codebash}
1343-
sudo lsmod | grep hello_sysfs
1343+
lsmod | grep hello_sysfs
13441344
\end{codebash}
13451345

13461346
What is the current value of \cpp|myvariable| ?
13471347

13481348
\begin{codebash}
1349-
sudo cat /sys/kernel/mymodule/myvariable
1349+
cat /sys/kernel/mymodule/myvariable
13501350
\end{codebash}
13511351

13521352
Set the value of \cpp|myvariable| and check that it changed.
13531353

13541354
\begin{codebash}
13551355
echo "32" | sudo tee /sys/kernel/mymodule/myvariable
1356-
sudo cat /sys/kernel/mymodule/myvariable
1356+
cat /sys/kernel/mymodule/myvariable
13571357
\end{codebash}
13581358

13591359
Finally, remove the test module:

0 commit comments

Comments
 (0)