Last modified by loktevda on 2025/10/08 17:24

From version 12.2
edited by loktevda
on 2025/09/08 14:53
Change comment: There is no comment for this version
To version 13.1
edited by loktevda
on 2025/09/08 14:54
Change comment: There is no comment for this version

Summary

Details

Page properties
Content
... ... @@ -90,12 +90,25 @@
90 90  The "-" implicates that it is a login shell. At example you need the login shell to use all your own variables. If you just change user etc. without it, it may happen that - at example - you don't have permissions to geht dconf work because of some variables still got owned by the previous user.
91 91  
92 92  
93 -== How to change the language ==
93 +== Additional Tips ==
94 94  
95 -Under "Manage Installed Languages" one can install Languages:
95 +=== Terminal Best Practices ===
96 96  
97 -[[image:attach:Screenshot from 2020-01-24 13-29-16.png||height="400"]]
97 +* Use Ctrl + C to cancel running commands
98 +* Use Ctrl + Z to suspend processes (resume with fg)
99 +* Use history to view command history
100 +* Use Tab for auto-completion
98 98  
99 -{{error}}
100 -But be aware that support is only for german/english. So if you don't understand something and theres a language like italian, korean etc. the chance is low to find someone who can understand this. So then we have to change the languages before and this needs a restart of the session.
101 -{{/error}}
102 +=== File System Navigation ===
103 +
104 +* Use pwd to show current directory
105 +* Use ls -la for detailed file listings
106 +* Use cd - to return to previous directory
107 +
108 +=== Getting Help ===
109 +
110 +* Use man <command> for manual pages
111 +* Use <command> ~-~-help for quick help
112 +* Use apropos <keyword> to find related commands
113 +
114 +