Actions

Post-installation Security Advice

From Whonix



Ball-63527-640.jpg

Introduction[edit]

Whonix ™ comes with many security features [archive]. Whonix ™ is Kicksecure ™ security hardened by default and also provides extensive Documentation including a System Hardening Checklist. The more you know, the safer you can be.

This page provides security advice, including steps that can be applied after installation of Whonix ™ for better security.

On Whonix-Gateway ™ and Whonix-Workstation ™[edit]

Increase Virtual Machine RAM[edit]

Whonix ™ default password info box Qubes-Whonix ™ users can skip this section. [1]

  • Whonix-Workstation ™: No changes are necessary for most users.
  • Whonix-Gateway ™: If enough host RAM is available, ideally the virtual RAM setting of Whonix-Gateway ™ should be increased to 2048 MB RAM. [2] If it is infeasible to increase the virtual RAM setting, Whonix-Gateway ™ will still function properly. [3]

If it is unknown how much RAM is available, follow these steps on the host: [4] [5] [6]

  • Windows 10: Task Manager in More details viewClick/tap on the Performance tabClick/tap on Memory; or Open a command promptRun wmic MemoryChip get /format:list
  • macOS: Apple menuAbout This Mac
  • Linux: Open a terminalRun free -h [7]

Related:

VirtualBox[edit]

  1. To add RAM in VirtualBox the VM must first be powered down.
  2. Virtual machineMenuSettingsAdjust Memory sliderHit: OK

KVM[edit]

1. Shut down the virtual machine(s).

virsh -c qemu:///system shutdown <vm_name>

2. Increase the maximum memory.

virsh setmaxmem <vm_name> <memsize> --config

3. Set the actual memory.

virsh setmem <vm_name> <memsize> --config

4. Restart the virtual machine(s).

virsh -c qemu:///system start <vm_name>

Change Keyboard Layout[edit]

Whonix ™Change Keyboard Layout info box Qubes-Whonix ™ users can skip this section. [8]

If you are using a keyboard layout other than qwerty (US), consider changing the keyboard layout. Refer to the dedicated Keyboard Layout entry for further details.

Test Keyboard Layout[edit]

Whonix ™Test Keyboard Layout info box Qubes-Whonix ™ users can skip this section.

  • Start menuAccessoriesMousepad; or
  • Open file ~/testfile in a text editor of your choice as a regular, non-root user.

If you are using a graphical environment, run.

mousepad ~/testfile

If you are using a terminal, run.

nano ~/testfile

Try typing the words user, changeme and qwerty. Try typing further words to ensure the desired keyboard layout is functional.

Change Password[edit]

Whonix ™ default password info box Qubes-Whonix ™ users can skip this section. [9] [10]

After Whonix ™ has finished installing, immediately change the password for the user user account in _both_ Whonix-Gateway-XFCE _and_ Whonix-Workstation-XFCE.

1. To avoid possible issues, review the Change Keyboard Layout and Test Keyboard Layout entries before proceeding further.

2. Open a terminal (such as Xfce Terminal Emulator).

Start menuApplicationsSystemTerminal

3. Run a test command as root by using sudo.

Run. [11]

sudo systemd-detect-virt

4. Read the note below regarding the username and password.

Whonix / Kicksecure ™ default admin password is: changeme default username: user
default password: changeme

When typing the password it will not appear on the screen, nor will the asterisk sign (*) be visible. It is necessary to type blindly and trust the procedure.

5. Change the user (and sudo) password.

To change the user (Whonix ™ default user) password, run. [11] This will also be the password when running sudo from Linux user account user. [12]

sudo passwd user

6. Root password.

No changes required. Optional, for details, see root account in Whonix ™.

7. Done.

The procedure of changing passwords is complete.

If issues appear when gaining root, consider using dsudo.

Another option is to boot into recovery mode and change passwords there.

Security Updates[edit]

Regularly check for security updates and apply them in a timely fashion; see Operating System Updates.

Network Time Syncing[edit]

This is a short summary of the Network Time Synchronization wiki page which is recommended reading.

1. Timezone information.

Ambox warning pn.svg.png Warning: The system clock inside Whonix ™ is set to UTC to prevent against timezone leaks. This means it may be a few hours ahead or behind the user's host system clock. It is strongly recommended not to change this setting.

2. Check the host clock is reasonably accurate.

A reasonably accurate host clock is required for many general security properties because an inaccurate clock can lead to:

Therefore, at all times ensure the host clock has an accuracy of up to ± 30 minutes.

3. Avoid pause / suspend / save / hibernate functions.

In simple terms, most users should avoid the pause / suspend / save / hibernate features. Although discouraged, see Network Time Synchronization for further details on when this is possible.

Better Security[edit]

This chapter is aimed at newcomers and only provides a short and simple overview for basic protection. Anonymity and platform security can be improved by following recommendations outlined in the Security Guide and Advanced Security Guide sections, along with the Time Attacks and Network Time Synchronization page.

Appendix[edit]

How do I Check the Current Whonix ™ Version?[edit]

See /etc/whonix_version.

Whonix-Gateway ™[edit]

Open a terminal.

If you are using Qubes-Whonix ™, complete the following steps.

Qubes App Launcher (blue/grey "Q")Whonix-Gateway ™ ProxyVM (commonly named sys-whonix)Xfce Terminal

If you are using a graphical Whonix ™ with XFCE, run.

Start MenuXfce Terminal

cat /etc/whonix_version

Should show.

16

Whonix-Workstation ™[edit]

Open a terminal.

If you are using Qubes-Whonix ™, complete the following steps.

Qubes App Launcher (blue/grey "Q")Whonix-Workstation ™ App Qube (commonly named anon-whonix)Xfce Terminal

If you are using a graphical Whonix ™ with XFCE, run.

Start MenuXfce Terminal

cat /etc/whonix_version

Should show.

16

Footnotes[edit]

  1. Qubes has dynamic RAM assignment.
  2. This provides higher performance during upgrades and lowers the likelihood of issues [archive].
  3. Although non-ideal, swap-file-creator [archive] will create an encrypted swap file and the system is configured to swap as little as possible [archive].
  4. https://www.tenforums.com/tutorials/66809-determine-system-memory-size-speed-type-windows-10-a.html [archive]
  5. https://vitux.com/how-to-check-installed-ram-on-debian/ [archive]
  6. https://support.apple.com/en-us/HT201191 [archive]
  7. This command works in Red Hat, CentOS, Suse, Ubuntu, Fedora, Debian and other distributions. Alternative commands include: cat /proc/meminfo |grep MemTotal, top, and vmstat -s.
  8. By default, Qubes VMs use the same keyboard layout as Qubes dom0.
  9. By default, Qubes does not require a password for superuser access.
  10. https://www.qubes-os.org/doc/vm-sudo/ [archive]
  11. 11.0 11.1 Type the command in the terminal and press <Enter>.
  12. Usual Debian / sudo default. Unspecific to Whonix ™,


Fosshost is sponsors Kicksecure ™ stage server 100px
Fosshost About Advertisements

Search engines: YaCy | Qwant | ecosia | MetaGer | peekier | Whonix ™ Wiki


Follow: 1024px-Telegram 2019 Logo.svg.png Iconfinder Apple Mail 2697658.png Twitter.png Facebook.png Rss.png Reddit.jpg 200px-Mastodon Logotype (Simple).svg.png

Support: Discourse logo.png

Donate: Donate Bank Wire Paypal Bitcoin accepted here Monero accepted here Contribute

Whonix donate bitcoin.png Monero donate Whonix.png United Federation of Planets 1000px.png

Twitter-share-button.png Facebook-share-button.png Telegram-share.png link=mailto:?subject=Post Install Advice&body=./Post_Install_Advice link=https://reddit.com/submit?url=./Post_Install_Advice&title=Post Install Advice link=https://news.ycombinator.com/submitlink?u=./Post_Install_Advice&t=Post Install Advice link=https://mastodon.technology/share?message=Post Install Advice%20./Post_Install_Advice&t=Post Install Advice

Please help in testing new features and bug fixes in Whonix ™.

https link onion link Priority Support | Investors | Professional Support

Whonix | © ENCRYPTED SUPPORT LP | Heckert gnu.big.png Freedom Software / Osi standard logo 0.png Open Source (Why?)

The personal opinions of moderators or contributors to the Whonix ™ project do not represent the project as a whole.

By using our website, you acknowledge that you have read, understood and agreed to our Privacy Policy, Cookie Policy, Terms of Service, and E-Sign Consent.