Linux Mint verder inricht na het installeren. Zonder onderscheid tussen Cinnamon en Xfce.
Linux (Mint) beheer en gereedschap
USB sticks vanzelf aankoppelen
Zie de instelling in bestanden bladeraar Nemo
In tegenstelling tot andere bekende besturings systemen hoef je je in Linux niet druk te maken over jouw privacy. Wnat die is veilig in Linux. Er is geen Linux gedrevenheid om alles van je te willen weten.
In je internetbladeraar (Firefox standaard in Linux) kun je een aantal zaken naar wens instellen. Dat is daar dus Linux onafhankelijk.
Firefox biedt je de mogelijkheid om je VPN bescherming te bieden. Surshark VPN heeft een bijbehorende add voor in Firefox : https://addons.mozilla.org/nl/firefox/addon/surfshark-vpn-proxy. Dat kan vast ook met elke andere VPN aanbieder.
Firefox biedt je de mogelijkheid om Facebook af te remmen in wat die allemaal van je probeert te weten. Zie de add on Facebook Container : https://addons.mozilla.org/nl/firefox/addon/facebook-container/?utm_source=addons.mozilla.org&utm_medium=referral&utm_content=search
Firefox biedt je de mogelijkheid om reklame niet te laten zien. Met een add-on zoals ooit AddBlockPlus, en ublock-origin. Dat geeft een hoop rust, want er komt alleen maar zinvolle info op je scherm. En wat is zinvol … Zie https://addons.mozilla.org/nl/firefox/addon/ublock-origin
Nog meer privacy met : https://addons.mozilla.org/nl/firefox/addon/ghostery/
Linux heeft natuurlijk ook een firewall aan boord. Zet die maar standaard aan. Meer info iig op het internet.
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
Zoek het op en doorloop de mogelijkheden
Linux Mint Menu
Thunderbird knoppen aanpassen
knop voor Thunderbird Mail
Maak een nieuwe knop voor Thunderbird ProfileManager
Kommando uitproberen in de terminal !
thunderbird -profilemanager
https://support.mozilla.org/nl/products/thunderbird
https://support.mozilla.org/en-US/kb/using-multiple-profiles
https://support.mozilla.org/en-US/kb/profiles-where-thunderbird-stores-user-data
Thunderbird mail backuppen is natuurlijk belangrijk. Hoe je dat doet is een. Wat je moet voorbereiden is dit :
# Hier mijn backup truuk. De basis ervan …
rsync -avn /home/ikzelf/.thunderbird /media/ikzelf/mijnexternedisk_ext4/thunderbird
Als een apparaat deze mogelijkheid zelf niet biedt, dan kun je het nog regelen in je router, op basis van het mac adres van de netwerk kaart in het apparaat. Waarschijnlijk zie je het ding zo staan in de router configuratie.
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
In de configuratie file /etc/hostname, van een pc of laptop komt een ! regel die niet met een # begint, en dat wordt de naam van deze computer
# # # # # # # # # # # # # # # # # # # #
# /etc/hostname
# denaamdiebijdeinstallatieonstondhekikeruit
# de nieuwe naam van deze computer wordt
mijnlaptop
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
In de configuratie file /etc/hosts komt dit terug. Hier geef je elke apparaat in je netwerk een leesbare naam. Die kun je dan verderop in je configuratie ook weer gebruiken.
# # # # # # # # # # # # # # # # # # # #
# /etc/hosts
# In deze file niets weghalen, wat je niet zelf toegevoegd hebt
# Maak een backup : cp /etc/hosts /etc/hosts_2020_0227
# Onderstaande hosts door mijzelf toegevoegd op 2020 0227
# IPNr Hostnaam
192.168.1.1 mijnrouter
192.168.1.2 mijnprinter
192.168.1.3 mijnraspberry
192.168.1.4 mijnnas
192.168.1.11 mijnpc
192.168.1.12 mijnlaptop
192.168.1.13 mijntablet
192.168.1.14 mijntelefoon
Je kunt hierdoor in verdere confiuguratiezaken en terminal commando's de hostnaam gebruiken ipv het ip adres. Zoals : ping mijnrouter. Handig ! In betreffende computers en telefoons stel je dezelfde naam in, als dat mogelijk is.
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
Hier staat uitgelegd hoe ik op een pc/laptop in /mnt/mijnnas en in /etc/fstab er voor zorg dan mijn nas partities vanzelf na het opstarten van pc en nas bereikbaar worden.
Daarvoor moet zowel je NAS als je pc/laptop goed zijn ingesteld.
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
Stappenplan
Onderstaand werk moet je met admin rechten uitvoeren. Voor het na-apen : namen enz naar eigen omstandigheden aanpassen
# mijnpc:/etc/hosts
192.168.1.4 mijnnas
Share mount directory maken bijvoorbeeld mkdir -p /mnt/mijnnas/backup de -p zorgt er voor dat alle subdirectories die nog niet bestaan, toch gemaakt worden. doe dit voor elke share
Eigenaar en group instellen met chown cd /mnt/mijnnas chown hans.users backup of allemaal tegelijk, alle directory, die met een kleine letter beginnen !!! chown hans.users [a-z]*
rechten instellen met chmod cd /mnt/mijnnas chmod 777 [a-z]* ls -l
#
drwxrwxrwx 2 hans users 4096 nov 2 14:56 backup
drwxrwxrwx 2 hans users 4096 nov 2 14:58 dokumenten
drwxrwxrwx 2 hans users 4096 nov 2 14:58 fotoos
drwxrwxrwx 2 hans users 4096 nov 2 14:58 linux
drwxrwxrwx 2 hans users 4096 nov 2 14:58 media
drwxrwxrwx 2 hans users 4096 nov 2 14:58 muziek
drwxrwxrwx 2 hans users 4096 nov 2 14:58 videoos
zorg dat de pc de nas shares kent in /etc/fstab
voeg per share een regel toe
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
# Toegevoegd door Hans in mijnpc:/etc/fstab tbv mijnnas
mijnnas:/nfs/backup /mnt/mijnnas/backup nfs defaults 0 0
mijnnas:/nfs/dokumenten /mnt/mijnnas/dokumenten nfs defaults 0 0
mijnnas:/nfs/fotoos /mnt/mijnnas/fotoos nfs defaults 0 0
mijnnas:/nfs/linux /mnt/mijnnas/linux nfs defaults 0 0
mijnnas:/nfs/media /mnt/mijnnas/media nfs defaults 0 0
mijnnas:/nfs/muziek /mnt/mijnnas/muziek nfs defaults 0 0
mijnnas:/nfs/videoos /mnt/mijnnas/videoos nfs defaults 0 0
Linux Mint gebruiken | Linux in Zuid Oost Brabant | Terminal configureren
https://makkelijkelinuxtips.blogspot.com/p/hp-printers.html
apt-get install hplip-gui
hp-setup
root@mijnlaptop:~# hp-setup HP Linux Imaging and Printing System (ver. 3.20.11) Printer/Fax Setup Utility ver. 9.0 Copyright (c) 2001-18 HP Development Company, LP This software comes with ABSOLUTELY NO WARRANTY. This is free software, and you are welcome to distribute it under certain conditions. See COPYING file for more details. warning: No display found. error: hp-setup requires GUI support (try running with --qt3). Also, try using interactive (-i) mode. root@mijnlaptop:~# hp-setup -i HP Linux Imaging and Printing System (ver. 3.20.11) Printer/Fax Setup Utility ver. 9.0 Copyright (c) 2001-18 HP Development Company, LP This software comes with ABSOLUTELY NO WARRANTY. This is free software, and you are welcome to distribute it under certain conditions. See COPYING file for more details. (Note: Defaults for each question are maked with a '*'. Press <enter> to accept the default.) -------------------------------- | SELECT CONNECTION (I/O) TYPE | -------------------------------- Num Connection Description Type -------- ---------- ---------------------------------------------------------- 0* usb Universal Serial Bus (USB) 1 net Network/Ethernet/Wireless (direct connection or JetDirect) Enter number 0...1 for connection type (q=quit, enter=usb*) ? 1 Using connection type: net Setting up device: hp:/net/OfficeJet_Pro_xxxx?ip=192.168.1.9 --------------------- | PRINT QUEUE SETUP | --------------------- Please enter a name for this print queue (m=use model name:'OfficeJet_Pro_xxxx'*, q=quit) ?m Using queue name: OfficeJet_Pro_xxxx Locating PPD file... Please wait. Found PPD file: drv:///hpcups.drv/hp-officejet_pro_xxxx.ppd Description: Note: The model number may vary slightly from the actual model number on the device. Does this PPD file appear to be the correct one (y=yes*, n=no, q=quit) ? y Enter a location description for this printer (q=quit) ?MijnThuisNetwerk Enter additonal information or notes for this printer (q=quit) ?HP Printer Scanner Adding print queue to CUPS: Device URI: hp:/net/OfficeJet_Pro_xxxx?ip=192.168.1.9 Queue name: OfficeJet_Pro_xxxx PPD file: drv:///hpcups.drv/hp-officejet_pro_xxxx.ppd Location: MijnThuisNetwerk Information: HP Printer Scanner ------------------- | FAX QUEUE SETUP | ------------------- Please enter a name for this fax queue (m=use model name:'OfficeJet_Pro_xxxx_fax'*, q=quit) ?m Using queue name: OfficeJet_Pro_xxxx_fax Enter a location description for this printer (q=quit) ?MijnThuisNetwerk_fax Enter additonal information or notes for this printer (q=quit) ?HP Printer Scanner Fax Adding fax queue to CUPS: Device URI: hpfax:/net/OfficeJet_Pro_xxxx?ip=192.168.1.9 Queue name: OfficeJet_Pro_xxxx_fax PPD file: /usr/share/ppd/hplip/HP/HP-Fax4-hpcups.ppd.gz Location: MijnThuisNetwerk_fax Information: HP Printer Scanner Fax -------------------- | FAX HEADER SETUP | -------------------- Would you like to perform fax header setup (y=yes*, n=no, q=quit) ?n --------------------- | PRINTER TEST PAGE | --------------------- Would you like to print a test page (y=yes*, n=no, q=quit) ? y warning: hp-testpage should not be run as root/superuser. HP Linux Imaging and Printing System (ver. 3.20.11) Testpage Print Utility ver. 6.0 Copyright (c) 2001-18 HP Development Company, LP This software comes with ABSOLUTELY NO WARRANTY. This is free software, and you are welcome to distribute it under certain conditions. See COPYING file for more details. Printing test page to printer OfficeJet_Pro_xxxx... Test page has been sent to printer. note: If an error occured, or the test page failed to print, refer to the HPLIP website note: at: http://hplip.sourceforge.net for troubleshooting and support. printer hebt, in je lokale netwerk Done. Done. root@mijnlaptop:~# ^
Als je een printer met scanner hebt, in je lokale netwerk, en hij wordt gevonden in je Linux netwerk …
Zoek in het menu op “scan” en vindt de Documentenscanner
Over hoe de desktop er uit ziet.
Je kunt er zelf een kiezen. In Linux wel.
https://fostips.com/change-login-manager-ubuntu-debian-fedora-arch-linux/