top:
day week month all

whatever

Community for : 4.2 years

The Official Sub for Whatever
__________
This is a catch-all free-for-all sub: if your post doesn't exactly fit another sub or you can't be bothered to find the right sub, this is the place for your post.

See also v/AnonWhatever if you want to ask your question anonymously.




Owner: system

Mods:












9
Hey kid, what are you doing? video games? - "no working on a manifesto." Do SSRIs come with those, or did TheRapist and you "contacts" suggest it     (www.zerohedge.com)
submitted by Cantaloupe to whatever 3 weeks ago (+9/-0)
7 comments last comment...
9
AIPAC and Deep State ((( Neo-Conservatives ))) are trying to get anyone on Trump's team fired for their opposition to Israel's latest plan to bomb Iran, insert an invasion force, and force regime change     (www.zerohedge.com)
submitted by KosherHiveKicker to whatever 2 weeks ago (+9/-0)
4 comments last comment...
9
Bang on     (files.catbox.moe)
submitted by kammmmak to whatever 2 weeks ago (+9/-0)
1 comments last comment...
9
anyone know of a place on the interwebs where one can watch old movies from the eighties?     (whatever)
submitted by drstrangergov to whatever 2 weeks ago (+9/-0)
12 comments last comment...
turns out everything is pay-per-view on the fake and gay internet.
9
All-wahmen Amazon rocket flight was fake n gae     (nypost.com)
submitted by Anus_Expander to whatever 2 weeks ago (+10/-1)
3 comments last comment...
https://nypost.com/2025/04/16/us-news/conspiracy-theories-swirl-about-katy-perrys-faked-blue-origin-space-mission/

Video shows the door was opened from the inside shortly before being slammed shut, then Bezos 'opened' it from the outside with a tool. REEEEEEEEEEEEEEEEEEEEEEEEE
9
How to use QubesOS     (whatever)
submitted by AntiPostmodernist to whatever 2 weeks ago (+9/-0)
16 comments last comment...
Running Tor, I2P, Freenet, Qubes OS, and virtual machines (VMs) on the same computer is feasible but requires careful planning due to resource demands, potential port conflicts, and security considerations. Qubes OS, a security-focused operating system that uses Xen-based virtualization, can serve as the host to compartmentalize these applications and networks for enhanced isolation and anonymity. Below is a step-by-step guide to set up this configuration on a single computer, assuming you’re starting with a Qubes OS installation. If you’re not using Qubes OS, I’ll also briefly address running these on a standard Linux distribution like Gentoo (from your previous query).

---

Prerequisites
- Hardware:
- CPU: 64-bit with virtualization support (Intel VT-x/AMD-V, 8+ cores recommended).
- RAM: Minimum 16 GB (32 GB+ recommended for multiple VMs).
- Storage: 100 GB+ free space (fast SSD preferred for VM performance).
- Network: Stable internet connection.
- Software:
- Qubes OS 4.2 or later (download from `www.qubes-os.org`).
- Alternatively, a Linux distribution like Gentoo or Debian for non-Qubes setups.
- Java Runtime Environment (JRE) 17+ for I2P and Freenet.
- Knowledge: Familiarity with Linux command-line, virtualization, and networking.
- Backup: Back up critical data before proceeding, as misconfiguration can lead to data loss.

---

Step-by-Step Guide

Step 1: Install Qubes OS
1. Download Qubes OS:
- Visit `www.qubes-os.org/downloads/` and download the latest ISO (e.g., Qubes-R4.2.x-x86_64.iso).
- Verify the ISO using GPG signatures provided on the website.

2. Create Bootable USB:
- Use `dd` (Linux) or tools like Rufus (Windows) to write the ISO to a USB drive:
```bash
sudo dd if=Qubes-R4.2.x-x86_64.iso of=/dev/sdX bs=4M status=progress
```
Replace `/dev/sdX` with your USB device.

3. Install Qubes OS:
- Boot from the USB, select “Install Qubes OS,” and follow the installer prompts.
- Allocate sufficient disk space (100 GB+ recommended).
- Configure a strong root password and user account.
- Post-install, update Qubes OS:
```bash
sudo qubes-dom0-update
```

4. Why Qubes OS?:
- Qubes uses Xen (Type 1 hypervisor) to create isolated “qubes” (VMs) for different tasks, reducing the risk of cross-contamination between Tor, I2P, Freenet, and other VMs.
- It integrates Whonix for Tor, enhancing anonymity out of the box.

---

Step 2: Set Up Whonix for Tor
Whonix, included with Qubes OS, provides a Tor-based anonymity solution with two VMs: a Gateway (routes traffic through Tor) and a Workstation (for user tasks).

1. Verify Whonix Installation:
- Qubes OS includes Whonix templates by default (`whonix-gw-16` for Gateway, `whonix-ws-16` for Workstation).
- Check templates:
```bash
qvm-ls | grep whonix
```
- If missing, install via:
```bash
sudo qubes-dom0-update qubes-template-whonix-gw-16 qubes-template-whonix-ws-16
```

2. Create Whonix Qubes:
- Create a Whonix Gateway qube:
```bash
qvm-create --template whonix-gw-16 --label red whonix-gw
```
- Create a Whonix Workstation qube:
```bash
qvm-create --template whonix-ws-16 --label green whonix-ws
```
- Configure networking:
```bash
qvm-prefs whonix-ws netvm whonix-gw
```

3. Start and Test Tor:
- Launch the Whonix Gateway and Workstation qubes from the Qubes menu.
- In the Workstation, open the Tor Browser (pre-installed) and verify connectivity via `check.torproject.org`.
- Whonix routes all traffic through Tor, ensuring anonymity for clearnet and .onion sites.

4. Security Notes:
- Use Whonix’s Workstation for Tor-based activities to prevent DNS leaks.
- Avoid running Tor Browser outside Whonix, as it may bypass the Gateway and expose your IP.

---

Step 3: Set Up I2P
I2P is a decentralized anonymity network focused on internal services (.i2p eepsites) and file sharing. It requires Java and can be run in a dedicated qube.

1. Create a Dedicated I2P Qube:
- Create a Debian-based AppVM for I2P to avoid Fedora’s ECDSA signature issues:
```bash
qvm-create --template debian-11 --label purple i2p-vm
```
- Set a NetVM (e.g., `sys-firewall` or `whonix-gw` for I2P-over-Tor).

2. Install Java and I2P:
- In the `i2p-vm` qube, install Java:
```bash
sudo apt update
sudo apt install openjdk-17-jre
```
- Download the I2P installer from `geti2p.net`:
```bash
wget https://download.i2p2.de/release/2.8.2/i2pinstall_2.8.2.jar
```
- Run the installer:
```bash
java -jar i2pinstall_2.8.2.jar
```
Follow the GUI prompts, or use console mode for headless setups:
```bash
java -jar i2pinstall_2.8.2.jar -console
```

3. Configure I2P:
- Start the I2P router:
```bash
~/i2p/i2prouter start
```
- Access the I2P Router Console at `http://127.0.0.1:7657` in a browser within the qube.
- Configure proxy settings in Firefox (or Tor Browser) for I2P:
- HTTP Proxy: `127.0.0.1`, Port: `4444`
- Disable other proxies (e.g., SOCKS).
- Test connectivity by visiting an eepsite (e.g., `http://i2p-projekt.i2p`).

4. I2P-over-Tor (Optional):
- For added anonymity, route I2P through Tor by setting the `i2p-vm` NetVM to `whonix-gw`.
- Adjust I2P’s outbound proxy settings in the Router Console to use Tor’s SOCKS5 proxy (`127.0.0.1:9050`).
- Note: This may reduce performance due to Tor’s latency.

5. Security Notes:
- I2P’s decentralized nature makes it robust for internal services but less suited for clearnet access compared to Tor.
- Use a separate qube to isolate I2P from other activities.

---

Step 4: Set Up Freenet
Freenet is a peer-to-peer network for anonymous file sharing and content distribution, also requiring Java.

1. Create a Freenet Qube:
- Create another Debian-based AppVM:
```bash
qvm-create --template debian-11 --label blue freenet-vm
```

2. Install Java and Freenet:
- Install Java (if not already installed):
```bash
sudo apt install openjdk-17-jre
```
- Download Freenet from `freenetproject.org`:
```bash
wget https://github.com/freenet/fred/releases/download/v0.7.5/FreenetInstaller-1487.jar
```
- Run the installer:
```bash
java -jar FreenetInstaller-1487.jar
```
Follow the prompts to install Freenet.

3. Configure Freenet:
- Start Freenet:
```bash
~/freenet/run.sh start
```
- Access the Freenet web interface at `http://127.0.0.1:8888`.
- Choose “Low security” for initial testing or “High security” for friend-to-friend mode (connecting only to trusted peers).
- Allocate disk space for Freenet’s datastore (e.g., 1 GB minimum).

4. Test Freenet:
- Browse freesites (Freenet’s internal sites) via the web interface.
- Test file sharing by uploading/downloading a file through the Freenet interface.

5. Security Notes:
- Freenet is slower than I2P or Tor due to its distributed storage model but excels for static content.
- Avoid running Freenet and I2P simultaneously in the same qube, as they may conflict over ports (e.g., both use high-numbered ports).

---

Step 5: Set Up Additional Virtual Machines
Qubes OS inherently runs applications in VMs (qubes). To run additional VMs (e.g., for testing other OSes or isolating specific tasks):

1. Create a New Qube:
- Install a template (e.g., Fedora, Ubuntu):
```bash
sudo qubes-dom0-update qubes-template-fedora-39
```
- Create a qube:
```bash
qvm-create --template fedora-39 --label orange test-vm
```

2. Install VM Software (Optional):
- For nested virtualization (VMs inside qubes), install VirtualBox or KVM:
```bash
sudo apt install virtualbox
```
Note: Nested virtualization is resource-intensive and may require enabling VT-x/AMD-V in BIOS.
- Alternatively, use Qubes’ disposable qubes for temporary tasks:
```bash
qvm-create --template debian-11 --label gray --disp disp-vm
```

3. Use Cases:
- Run a Windows VM for software incompatible with Linux.
- Test other anonymity-focused OSes like Tails (though Tails is better as a live USB).

---

Step 6: Manage Resources and Avoid Conflicts
1. Resource Allocation:
- Assign RAM and CPU cores to qubes via Qubes Manager or:
```bash
qvm-prefs whonix-ws maxmem 2048
```
- Monitor usage in `dom0`:
```bash
xl top
```

2. Port Conflicts:
- Tor uses ports 9050 (SOCKS) and 9040 (transparent proxy).
- I2P uses 4444 (HTTP proxy) and 7657 (Router Console).
- Freenet uses 8888 (web interface) and dynamic high-numbered ports.
- Check for conflicts:
```bash
netstat -tulnp
```
- If conflicts arise, reconfigure ports in each application’s settings (e.g., I2P’s `clients.config`, Freenet’s `freenet.ini`).

3. Network Isolation:
- Assign different NetVMs to qubes (e.g., `whonix-gw` for Tor, `sys-firewall` for I2P/Freenet) to prevent traffic leaks.
- Disable DNS requests in I2P/Freenet qubes’ firewalls to enhance anonymity.

4. Performance Tips:
- Use SSDs to reduce VM disk I/O latency.
- Limit running qubes to conserve RAM (e.g., shut down unused qubes via `qvm-shutdown`).

---

Step 7: Alternative Setup on Gentoo (Non-Qubes)
If you prefer using Gentoo (from your earlier query) instead of Qubes OS:

1. Install Gentoo:
- Follow the Gentoo installation guide from your previous query to set up a base system.

2. Install Tor:
- Install Tor and Tor Browser:
```bash
emerge net-vpn/tor www-client/tor-browser
```
- Start Tor:
```bash
systemctl start tor
```

3. Install I2P:
- Install Java and I2P:
```bash
emerge dev-java/openjdk net-p2p/i2p
```
- Start I2P:
```bash
/etc/init.d/i2p start
```

4. Install Freenet:
- Download and install Freenet manually (no Gentoo package):
```bash
wget https://github.com/freenet/fred/releases/download/v0.7.5/FreenetInstaller-1487.jar
java -jar FreenetInstaller-1487.jar
```
- Start Freenet:
```bash
~/freenet/run.sh start
```

5. Install VirtualBox for VMs:
- Install VirtualBox:
```bash
emerge app-emulation/virtualbox
```
- Create VMs for other OSes (e.g., Debian, Windows).

6. Challenges:
- Gentoo lacks Qubes’ compartmentalization, increasing the risk of leaks or cross-contamination.
- Manually configure iptables to isolate network traffic:
```bash
iptables -A OUTPUT -p tcp --dport 9050 -j ACCEPT # Allow Tor
iptables -A OUTPUT -p tcp --dport 4444 -j ACCEPT # Allow I2P
```

---

Security and Privacy Considerations
- Compartmentalization: Qubes OS ensures Tor, I2P, and Freenet run in separate qubes, preventing a compromise in one from affecting others.
- Anonymity Risks:
- Tor is best for clearnet and .onion sites but vulnerable to exit node attacks.
- I2P excels for internal eepsites and file sharing but has fewer users, reducing anonymity set.
- Freenet is secure for static content but slow and less popular.
- Behavior: Avoid reusing usernames or enabling JavaScript, which can de-anonymize you.
- Forensic Risks: I2P may store unencrypted local data, which could be recovered if a machine is seized.
- Updates: Regularly update Qubes, Whonix, I2P, Freenet, and Tor to patch vulnerabilities.

---

Troubleshooting
- I2P/Freenet Firewalled: If I2P reports “Network Firewalled” when Freenet is running, stop Freenet or reconfigure ports.
- Resource Overload: Reduce running qubes or increase RAM. Monitor with `xl top`.
- Tor Failure: Check Whonix Gateway logs (`/var/log/tor/log`) for connection issues.
- I2P/Tor Browser Conflict: Use separate browser profiles for Tor and I2P to avoid proxy conflicts.

---

Conclusion
Using Qubes OS is the optimal way to run Tor (via Whonix), I2P, Freenet, and additional VMs on the same computer due to its strong isolation. Each anonymity network serves distinct purposes: Tor for clearnet and .onion access, I2P for eepsites and file sharing, and Freenet for decentralized content storage. On Gentoo, you can achieve a similar setup but with less security due to the lack of compartmentalization. For maximum anonymity, use dedicated qubes, avoid clearnet access via I2P, and follow best practices like disabling JavaScript.

If you need specific configuration details (e.g., I2P-over-Tor setup, custom VM creation, or Gentoo-specific tweaks), let me know!
9
What it means to be White in America     (www.rt.com)
submitted by boekanier to whatever 2 weeks ago (+9/-0)
1 comments last comment...
9
I can't even believe that this case has progressed all the way to the SCOTUS. - If they rule against America's Parents on this case, then we might as well begin the real Civil War against the Communist Bolshevik-Jews.     (thefederalist.com)
submitted by KosherHiveKicker to whatever 1 week ago (+9/-0)
4 comments last comment...
9
Stay lost MFer     (files.catbox.moe)
submitted by oyveyo to whatever 1 week ago (+9/-0)
5 comments last comment...
9
Vox Day Shows His True Colors - Forgets big tribe-faggot Owen Benjamin is only successful because he did what his kind typically does, which is scam people.     (whatever)
submitted by prototype to whatever 1 week ago (+9/-0)
10 comments last comment...
https://voxday.net/2025/04/21/failure-replacement/

Can't blame him for scamming gullible retards, but I can say his idea that hes superior to anyone because he's "successful" is pretty disgusting.

And here is vox day, showing what they're actually about.
9
How Hot Is This 70s Chick?     (www.reddit.com)
submitted by GrayDragon to whatever 1 week ago (+12/-3)
35 comments last comment...
9
Yep, that's definitely my generation     (m3.gab.com)
submitted by 2Drunk to whatever 1 week ago (+10/-1)
2 comments last comment...
9
Coaster posting     (whatever)
submitted by Scruffy to whatever 1 week ago (+9/-0)
24 comments last comment...
Got a good 4 1/2 hours at the park, 8 rides I think. I love riding coasters White men have designed and built more than I hate the increasingly-swarthy crowds. Lotta nigs, some hispanolas, a couple towel-heads. This park is in PA, no “teenager” fight crowds like down south (shame cause those parks have badass coasters I really want to do). Just general stupidity from all. But nice few hours, walking around outside on a beautiful day, crushing strong beers and riding some top-notch coasters.


9
And when they trun the power back on - Poof, no more white people.     (gab.com)
submitted by 2Drunk to whatever 6 days ago (+10/-1)
25 comments last comment...
9
Harry Hay – ‘Father of Gay Liberation,’ Communist, and supporter of NAMBLA the Paedophile Advocacy Group     (whatever)
submitted by Flanders to whatever 6 days ago (+9/-0)
3 comments last comment...
Harry Hay was the Communist founder of a group known as the ‘Mattachine Society,’ the first gay rights organisation in the US in the 1950s. He was also a supporter of the paedophile advocacy group known as NAMBLA (North American Man-Boy Love Association). He was a member of the Communist Party USA, and wanted to model the Mattachine Society on the cell organisation being used by the Communist Party of the United States.

Here we have an example of a radical Communist and militant homosexual, who was a supporter of a militant paedophile advocacy group.

At the 1986 LA ‘Gay pride’ parade, he wore a sign which said ‘NAMBLA walks with me.’

"When people try and deny the reality of Cultural Marxism and the militant homosexual agenda, they are simply trying to cover up the reality that homosexuality was and is viewed by the Cultural Marxist left, with their ideas from the Frankfurt School, as an ideal way in which to deconstruct social institutions in the West such as the family and Christianity.
[Continues]:

https://smashculturalmarxism.wordpress.com/2015/01/30/harry-hay-communist-father-of-gay-liberation-communist-and-supporter-of-nambla-the-paedophile-advocacy-group/
9
Foreign and Domestic Groups Have Been Manipulating Forums with AI Bots     (threadreaderapp.com)
submitted by SilentByAssociation to whatever 5 days ago (+9/-0)
11 comments last comment...
https://threadreaderapp.com/thread/1916916134630117814.html

Dead internet theory is real.

Chances seem high we have more bots and feds here than real users.
9
The Jewish Double Standard - Ladino-Jew AOC told entire world Biden's Bolshevik-Jews should ignore SCOTUS rulings on student loan cancelations, and yet cries "End of Democracy" when Trump does the same?     (www.thegatewaypundit.com)
submitted by KosherHiveKicker to whatever 5 days ago (+9/-0)
2 comments last comment...
9
Pro-Tip - How to downvoat @Joe_McCarthy faster.     (www.youtube.com)
submitted by KosherHiveKicker to whatever 5 days ago (+11/-2)
11 comments last comment...
9
Black Pride - Kenyan "Youths" encourage suicidal man to jump as they record. They laugh at him before, during, and after he jumps.     (theworldwatch.com)
submitted by KosherHiveKicker to whatever 3 days ago (+9/-0)
4 comments last comment...
9
CAN YOU DIG IT!?!     (whatever)
submitted by texasblood to whatever 3 days ago (+9/-0)
7 comments last comment...
Smear this around
https://ibb.co/B2M45Qjc
9
Ever seen the movie 'The Cooler'?     (www.imdb.com)
submitted by CoronaHoax to whatever 3 days ago (+9/-0)
8 comments last comment...
https://www.imdb.com/title/tt0318374/

Sometimes I think I'm a 'Cooler' because I can make people never want to show up somewhere ever again just by chumming with them. For example, I am absolutely certain I've caused ie cashiers to leave their job more than once. I was thinking, should I start making use of this super power? Ie should I start making homeless f off permanently?
8
"Trump tariffs are the end of American Empire." - Israel First, "Replace White workers with illegal immigrants", Never Trump, Bolshevik-Jew ((( Bill Kristol ))).     (www.breitbart.com)
submitted by KosherHiveKicker to whatever 4 weeks ago (+9/-1)
4 comments last comment...
8
6uild 6ask 6etter.     (whatever)
submitted by MCDLXXXVIII to whatever 4 weeks ago (+8/-0)
14 comments last comment...
Just noticed it the other day, that is all.

Edit - not sure why the s instead of c, maybe autocorrect got. Either way my bad.
8
Mormon pajeets own northwest Georgia Dairy Queens     (whatever)
submitted by bobdole9 to whatever 3 weeks ago (+8/-0)
18 comments last comment...
I had a ServSafe Manager training today in my city. During one of the breaks, an old Indian woman was chatting with the instructor. Apparently, mormons went over to India on missionary trips, and brought some back. I didn't hear why they settled in northern Georgia, but appatently a community of 1,200 came over.

Weirdly, these Mormon pajeets bought into Dairy Queen franchises. Apparently 90 families have bought into different franchises, so the odds of one being owned by "a member of the community is pretty high."

The more you know.
8
What is going on at YouTube and Google?     (whatever)
submitted by DarkSkeleton2000 to whatever 3 weeks ago (+8/-0)
11 comments last comment...
You cant say he words "gun" or "weapon" in YouTube's comment section anymore people have started to replace those words with "force multiplier." And YouTube has started to age restrict videos with "gambling related content or appears to glamourize gambling and casinos." This all is obviously an attempt to crack down on channels like John E Hoover and channels that feature video game play footage and people dissing all the nickle and diming in video gaming.




I'd say Kash Patel needs to charge YouTube and Google with fraud but he's too busy taking it up his rear from Kristi Noem who's DHS is now attempting to censor and arrest anyone critical of Israel, critical of homosexual Russian Jews, and critical of Hindus.