Tor Browser in a Container: Difference between revisions
imported>Evrim No edit summary |
imported>Evrim mNo edit summary |
||
Line 2: | Line 2: | ||
Warning: This is a WIP. | Warning: This is a WIP. | ||
Need a few programs beforehand. Install the followings in your user profile. | Need a few programs beforehand. Install the followings in your user profile. |
Revision as of 12:17, 14 March 2019
Tor Browser in a NixOS Container w/ Pulse, Media
Warning: This is a WIP.
Need a few programs beforehand. Install the followings in your user profile.
nix-env -iA nixos.socat
Use the following container conf in configuration.nix
or derive your own.
containers.browser = { autoStart = false; privateNetwork = true; hostAddress = "192.168.7.10"; localAddress = "192.168.7.11"; config = {config, pkgs, ... }: { services.openssh = { enable = true; forwardX11 = true; }; users.extraUsers.browser = { isNormalUser = true; home = "/home/browser"; openssh.authorizedKeys.keys = [ SSH-KEYS-GO-HERE ]; extraGroups = ["audio" "video"]; }; }; };
Mind to fill the SSH keys in. Need to open up ports and pulse audio also:
networking.firewall.allowedTCPPorts = [ 4713 6000 ]; hardware.pulseaudio = { enable = true; systemWide = true; support32Bit = true; tcp = { enable = true; anonymousClients = { allowedIpRanges = ["127.0.0.1" "192.168.7.0/24"]; }; }; };
Then, follow the steps:
- Do a usual
nixos-rebuild switch
and container will be created. - Run the container
nixos-container start browser
. - Root login
nixos-container root-login browser
- Update
nix-channel --update
- Switch
nixos-rebuild switch
Now the container should be in a sane state to work on. Install the browser:
[root@browser:~]$ su - browser [browser@browser:~]$ nix repl Welcome to Nix version 2.2. Type :? for help. nix-repl> pkgs = import <nixpkgs> {} nix-repl> :i pkgs.callPackage <nixpkgs/pkgs/applications/networking/browsers/tor-browser-bundle-bin> { mediaSupport = true; pulseaudioSupport = true; } installing 'tor-browser-bundle-bin-8.0.6.drv' nix-repl>
The following two scripts are needed. Put them in ~/bin
directories or any other directory included in the path.
This run-tor-browser.sh
is executed by the host.
#!/bin/sh socat -d TCP-LISTEN:6000,fork,bind=192.168.7.10 UNIX-CONNECT:/tmp/.X11-unix/X0 & pax11publish -e xhost + ssh -X browser@192.168.7.11 run-tor-browser.sh
This run-tor-browser.sh
is executed in the container (guest).
#!/bin/sh pax11publish -i PULSE_SERVER=tcp:192.168.7.10:4713 XAUTHORITY="/home/browser/.Xauthority" DBUS_SESSION_BUS_ADDRESS="" DISPLAY=192.168.7.10:0.0 apulse tor-browser $@