Skip to content

Commit 321af9f

Browse files
committed
Fix linter remarks
1 parent 3e6858a commit 321af9f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

03-linux/03-linux.tex

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ \section{Connection to remote devices}
328328
\item \texttt{ssh user@host} — connect using default port
329329
\item \texttt{ssh -p 2222 user@host} — use a custom port
330330
\item \texttt{ssh -i /home/user/.ssh/id\_ed25519 user@host} — specify a key
331-
\item \texttt{ssh-keygen -t ed25519 -C "[email protected]"} — generate a key pair
331+
\item \texttt{ssh-keygen -t ed25519 -C [email protected]} — generate a key pair
332332
\item \texttt{ssh-copy-id user@host} — install your public key on the server
333333
\end{itemize}
334334
\end{exampleblock}
@@ -344,9 +344,9 @@ \section{Connection to remote devices}
344344
\begin{itemize}
345345
\item \texttt{sudo apt install tigervnc-standalone-server tigervnc-common}
346346
\item \texttt{vncpasswd} — set per-user VNC password
347-
\item \texttt{vncserver -localhost yes -geometry 1920x1080 :1}
347+
\item \texttt{vncserver -localhost yes -geometry 1920x1080 :1} % chktex 29 26
348348
\item \texttt{ssh -L 5901:localhost:5901 user@host} — then connect viewer to \texttt{localhost:5901}
349-
\item \texttt{vncserver -list} / \texttt{vncserver -kill :1}
349+
\item \texttt{vncserver -list} / \texttt{vncserver -kill :1} % chktex 26
350350
\end{itemize}
351351
\end{exampleblock}
352352
\end{frame}
@@ -365,7 +365,7 @@ \section{Running Linux}
365365

366366
\begin{frame}{Ways to run Linux: differences}
367367
\begin{itemize}
368-
\item \textbf{Native install}: Best performance and full hardware access; requires partitioning and can disrupt existing OS.
368+
\item \textbf{Native install}: Best performance and full hardware access; requires partitioning and can disrupt existing OS.\@
369369
\item \textbf{Virtual machine}: Strong isolation and easy snapshots; moderate overhead and limited direct device/GPU access.
370370
\item \textbf{WSL}: Convenient dev workflow on Windows; runs in a lightweight VM with limited low-level hardware/peripheral access.
371371
\item \textbf{Docker container}: More lightweight solution (in case of Windows/macOS also based on VM); shares host kernel (not a full OS), limited system-level control.

0 commit comments

Comments
 (0)