Wie können wir helfen?
Workgroup in Linux Mint ändern
1.) Starte den Terminal
2.) sudo nano /etc/samba/smb.conf
3.) änder die Workgroup name
4.) CTRL + O – Drücken um die Änderungen zu speichern
5.) CTRL + X – drücken für Exit
Some Useful Nano Editor Commands
Any command prefixed with a caret symbol (^) means to use the Ctrl key (e.g., ^G means to press the Ctrl+G keys at the same time).
Here we have listed the top nano editor command which you should know:
- ^G: nano help
- ^A: move to beginning of line in nano
- ^E: move to end of line in nano
- ^Y: move down a page – next page in nano
- ^V: move up a page – previous page in nano
- ^_: move to a specific line (^_^V moves to the top of the file, ^_^Y to the bottom)
- ^C: find out what line the cursor is currently on
- ^W: search or find some text in nano
- ^D: delete character currently under the cursor
- ^K: delete line in nano, nano remove line
- Also for remove or clear or delete some content or multiple lines you can select lines with your mouse and then use CTRL+K.
- ^O: save file nano (you will be prompted for a file to save to)
- ^X: exit nano (you will be prompted to save your file if you have not)