{"id":106,"date":"2026-01-26T08:53:14","date_gmt":"2026-01-26T08:53:14","guid":{"rendered":"https:\/\/palmapro.net\/vedp-privacy\/?page_id=106"},"modified":"2026-01-26T09:02:58","modified_gmt":"2026-01-26T09:02:58","slug":"mobile-onion-service-auf-virtualbox","status":"publish","type":"page","link":"https:\/\/palmapro.net\/vedp-privacy\/index.php\/mobile-onion-service-auf-virtualbox\/","title":{"rendered":"mobile ONION-Service auf Virtualbox"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Install Virtualbox w Debian Guest-OS<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https:\/\/palmapro.net\/vedp-privacy\/index.php\/virtualbox\/\" data-type=\"page\" data-id=\"103\">Folge dieser Anleitung<\/a><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Lade dieses ISO : LINKZUMDEBIAN_ISO<br><br><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Connect to Guest via SSH<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Setup TOR-Node and Onion Service<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">To install a&nbsp;<strong>Tor Onion Service<\/strong>&nbsp;on Linux, follow these steps:<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Install Tor<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Ensure you have the latest Tor package installed. On Debian\/Ubuntu-based systems:<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Prerequisite: Verify the CPU architecture<\/h4>\n\n\n\n<p class=\"wp-block-paragraph\">The package repository offers&nbsp;<code>amd64<\/code>&nbsp;and&nbsp;<code>arm64<\/code>&nbsp;binaries. Verify your operating system is capable of running the binary by inspecting the output of the following command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>  $ sudo dpkg --print-architecture\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">It should output either&nbsp;<code>amd64<\/code>&nbsp;or&nbsp;<code>arm64<\/code>. The repository does not support other CPU architectures.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">1. Install&nbsp;<code>apt-transport-https<\/code><\/h4>\n\n\n\n<p class=\"wp-block-paragraph\">To enable all package managers using the libapt-pkg library to access metadata and packages available in sources accessible over https (Hypertext Transfer Protocol Secure).<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>   $ sudo apt install apt-transport-https\n<\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">2. Create a new file in&nbsp;<code>\/etc\/apt\/sources.list.d\/<\/code>&nbsp;named&nbsp;<code>tor.sources<\/code>&nbsp;and add the following entry:<\/h4>\n\n\n\n<pre class=\"wp-block-code\"><code>\n   Types: deb deb-src\n   URIs: https:\/\/deb.torproject.org\/torproject.org\/\n   Suites: &lt;DISTRIBUTION>\n   Components: main\n   Signed-By: \/usr\/share\/keyrings\/deb.torproject.org-keyring.gpg<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Replace\u00a0<code>&lt;DISTRIBUTION><\/code>\u00a0with your operating system&#8217;s codename. You can run\u00a0<code>lsb_release -c<\/code>\u00a0or check\u00a0<code>\/etc\/os-release<\/code>\u00a0to find it.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">3. Install GnuPG if not already installed:<\/h4>\n\n\n\n<pre class=\"wp-block-code\"><code>   $ sudo apt install gnupg\n<\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">4. Then add the gpg key used to sign the packages by running the following command at your command prompt:<\/h4>\n\n\n\n<pre class=\"wp-block-code\"><code>   $ wget -qO- https:\/\/deb.torproject.org\/torproject.org\/A3C4F0F979CAA22CDBA8F512EE8CBC9E886DDD89.asc | gpg --dearmor | sudo tee \/usr\/share\/keyrings\/deb.torproject.org-keyring.gpg &gt;\/dev\/null\n<\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">5. Install tor and tor debian keyring<\/h4>\n\n\n\n<p class=\"wp-block-paragraph\">We provide a Debian package to help you keep our signing key current. It is recommended you use it. Install it with the following commands:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>   $ sudo apt update\n   $ sudo apt install tor deb.torproject.org-keyring<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Configure Tor for Hidden Service<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Edit the Tor configuration file:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo nano \/etc\/tor\/torrc<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Add the following lines to enable your onion service:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>HiddenServiceVersion 3\nHiddenServiceDir \/var\/lib\/tor\/hidden_service\/\nHiddenServicePort 80 127.0.0.1:80<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code>HiddenServiceDir<\/code>\u00a0specifies where Tor stores the service\u2019s private key and\u00a0<code>.onion<\/code>\u00a0hostname.<\/li>\n\n\n\n<li><code>HiddenServicePort 80 127.0.0.1:80<\/code>\u00a0forwards traffic from the Tor network (port 80) to your local web server (e.g., Apache\/Nginx on port 80).\u00a0<\/li>\n<\/ul>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\"><strong>Note<\/strong>: Replace&nbsp;<code>80<\/code>&nbsp;with your web server\u2019s port if different (e.g.,&nbsp;<code>8181<\/code>).&nbsp;<\/p>\n<\/blockquote>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Set Permissions<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Ensure the directory has correct ownership and permissions:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo mkdir -p \/var\/lib\/tor\/hidden_service\/\nsudo chown debian-tor:debian-tor \/var\/lib\/tor\/hidden_service\/\nsudo chmod 700 \/var\/lib\/tor\/hidden_service\/<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Restart Tor<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Apply changes:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo systemctl restart tor<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Retrieve Your .onion Address<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">After restarting, Tor generates a&nbsp;<code>.onion<\/code>&nbsp;address:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>cat \/var\/lib\/tor\/hidden_service\/hostname<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">This output is your unique&nbsp;<code>.onion<\/code>&nbsp;domain.&nbsp;<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Set Up Your Web Server<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Ensure your web server (Apache, Nginx, etc.) is running and accessible on&nbsp;<code>127.0.0.1:80<\/code>. For example, with Nginx:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo systemctl enable --now nginx<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Test Access<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Open the&nbsp;<strong>Tor Browser<\/strong>&nbsp;and navigate to your&nbsp;<code>.onion<\/code>&nbsp;address. If configured correctly, your site will load.&nbsp;<\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\"><strong>Important<\/strong>: Onion services are not accessible via regular browsers. Only the Tor Browser can reach them.&nbsp;<\/p>\n<\/blockquote>\n\n\n\n<h2 class=\"wp-block-heading\">Install Webserver<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Apache is available in the main repository of multiple Linux and *BSD distributions. To install&nbsp;<code>apache2<\/code>&nbsp;package:<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><code>$ sudo apt install apache2<\/code><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Install mariaDB + Php<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">To install&nbsp;<strong>MariaDB<\/strong>&nbsp;and&nbsp;<strong>PHP<\/strong>&nbsp;on Linux, follow these general steps based on Debian\/Ubuntu systems:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Update package lists<\/strong>:<code>sudo apt update<\/code><\/li>\n\n\n\n<li><strong>Install PHP and required modules<\/strong>\u00a0(e.g., PHP 8.2):<code>sudo apt install php8.2 php8.2-cli php8.2-common php8.2-curl php8.2-gd php8.2-intl php8.2-mbstring php8.2-mysql php8.2-opcache php8.2-readline php8.2-xml php8.2-xsl php8.2-zip php8.2-bz2 libapache2-mod-php8.2 -y<\/code><\/li>\n\n\n\n<li><strong>Install MariaDB server and client<\/strong>:<code>sudo apt install mariadb-server mariadb-client -y<\/code><\/li>\n\n\n\n<li><strong>Secure MariaDB installation<\/strong>:<code>sudo mysql_secure_installation<\/code>\n<ul class=\"wp-block-list\">\n<li>Press Enter for the current root password (blank initially).<\/li>\n\n\n\n<li>Set a new root password.<\/li>\n\n\n\n<li>Answer\u00a0<code>Y<\/code>\u00a0to remove anonymous users, disallow remote root login, remove test database, and reload privileges.\u00a0<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li><strong>Enable and start services<\/strong>\u00a0(if not auto-started):<code>sudo systemctl enable mariadb sudo systemctl start mariadb<\/code><\/li>\n\n\n\n<li><strong>Verify installation<\/strong>:\n<ul class=\"wp-block-list\">\n<li>Check PHP version:\u00a0<code>php -v<\/code><\/li>\n\n\n\n<li>Check MariaDB status:\u00a0<code>sudo systemctl status mariadb<\/code>\u00a0<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">\ud83d\udca1&nbsp;<strong>Note<\/strong>: For older systems like Debian 10, use&nbsp;<code>php7.4<\/code>&nbsp;instead of&nbsp;<code>php8.2<\/code>. For Amazon Linux 2, use&nbsp;<code>amazon-linux-extras enable php7.4<\/code>&nbsp;and&nbsp;<code>yum install php<\/code>&nbsp;with additional packages.&nbsp;<\/p>\n<\/blockquote>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Optional: Install phpMyAdmin<\/strong>\u00a0for a web-based MariaDB interface:\n<ul class=\"wp-block-list\">\n<li>Download and extract:\u00a0<code>wget https:\/\/www.phpmyadmin.net\/downloads\/phpMyAdmin-latest-all-languages.zip -O phpmyadmin.zip<\/code><\/li>\n\n\n\n<li>Unzip and move:\u00a0<code>unzip phpmyadmin.zip &amp;&amp; mv phpMyAdmin-*-all-languages phpmyadmin<\/code><\/li>\n\n\n\n<li>Set permissions:\u00a0<code>chmod -R 0755 phpmyadmin<\/code><\/li>\n\n\n\n<li>Configure Apache and set up the web directory as shown in the full tutorial.\u00a0<br><br><\/li>\n<\/ul>\n<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">optional: Install WordPress<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<ol class=\"wp-block-list\"><\/ol>\n","protected":false},"excerpt":{"rendered":"<p>Install Virtualbox w Debian Guest-OS Folge dieser Anleitung Lade dieses ISO : LINKZUMDEBIAN_ISO Connect to Guest via SSH Setup TOR-Node and Onion Service To install a&nbsp;Tor Onion Service&nbsp;on Linux, follow these steps: Install Tor Ensure you have the latest Tor package installed. On Debian\/Ubuntu-based systems: Prerequisite: Verify the CPU architecture The package repository offers&nbsp;amd64&nbsp;and&nbsp;arm64&nbsp;binaries. Verify [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-106","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/palmapro.net\/vedp-privacy\/index.php\/wp-json\/wp\/v2\/pages\/106","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/palmapro.net\/vedp-privacy\/index.php\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/palmapro.net\/vedp-privacy\/index.php\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/palmapro.net\/vedp-privacy\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/palmapro.net\/vedp-privacy\/index.php\/wp-json\/wp\/v2\/comments?post=106"}],"version-history":[{"count":5,"href":"https:\/\/palmapro.net\/vedp-privacy\/index.php\/wp-json\/wp\/v2\/pages\/106\/revisions"}],"predecessor-version":[{"id":115,"href":"https:\/\/palmapro.net\/vedp-privacy\/index.php\/wp-json\/wp\/v2\/pages\/106\/revisions\/115"}],"wp:attachment":[{"href":"https:\/\/palmapro.net\/vedp-privacy\/index.php\/wp-json\/wp\/v2\/media?parent=106"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}