mirror of
https://git.anonymousland.org/anonymousland/anonymousland.git
synced 2024-10-01 11:49:49 -04:00
QubesOS page, update Services and donation page
This commit is contained in:
parent
6e3cdf79a7
commit
d6e2e0703b
158
_information/QubesOS.md
Normal file
158
_information/QubesOS.md
Normal file
@ -0,0 +1,158 @@
|
||||
---
|
||||
layout: default1
|
||||
description: For QubesOS
|
||||
title: Qubes Notes
|
||||
permalink: /Qubes
|
||||
---
|
||||
|
||||
<div style="text-align:center;">
|
||||
A collection of QubesOS-related information.
|
||||
</div>
|
||||
<br>
|
||||
|
||||
#### Table of contents:
|
||||
|
||||
|
||||
-\>> [Template Setup](#template-setup) <br>
|
||||
- -\> *[Debian](#debian)* <br>
|
||||
- -\> *[Security](#debian-security)* <br>
|
||||
- -\> *[Fedora](#fedora)* <br>
|
||||
- -\> *[Upgrading Fedora](#upgrading-fedora)* <br>
|
||||
<br>
|
||||
|
||||
### Template Setup
|
||||
|
||||
Small notes for template setup
|
||||
|
||||
<br>
|
||||
|
||||
#### Debian
|
||||
|
||||
Running in Dom0:
|
||||
|
||||
```
|
||||
sudo qubes-dom0-update qubes-template-debian-11-minimal
|
||||
```
|
||||
|
||||
Running inside the template:
|
||||
|
||||
```
|
||||
sudo apt update
|
||||
```
|
||||
|
||||
Installing packages
|
||||
|
||||
```
|
||||
sudo apt install qubes-core-agent-passwordless-root qubes-core-agent-dom0-updates qubes-usb-proxy qubes-gpg-split qubes-core-agent-networking git apt-transport-tor curl -y
|
||||
```
|
||||
|
||||
Configuring git proxy
|
||||
|
||||
```
|
||||
git --config global.proxy 127.0.0.1:8002
|
||||
```
|
||||
|
||||
<br>
|
||||
|
||||
#### Debian Security
|
||||
|
||||
Installing Kicksecure:
|
||||
|
||||
```
|
||||
curl --proxy http://127.0.0.1:8082/ --tlsv1.3 --proto =https --max-time 180 --output ~/derivative.asc https://www.kicksecure.com/derivative.asc
|
||||
```
|
||||
|
||||
```
|
||||
sudo cp ~/derivative.asc /usr/share/keyrings/derivative.asc
|
||||
```
|
||||
|
||||
```
|
||||
echo "deb [signed-by=/usr/share/keyrings/derivative.asc] tor+http://deb.w5j6stm77zs6652pgsij4awcjeel3eco7kvipheu6mtr623eyyehj4yd.onion bullseye main contrib non-free" | sudo tee /etc/apt/sources.list.d/derivative.list
|
||||
```
|
||||
|
||||
Installing LKRG
|
||||
|
||||
```
|
||||
sudo apt install --no-install-recommends lkrg-dkms linux-headers-amd64
|
||||
```
|
||||
|
||||
Enabling Hardened Malloc:
|
||||
|
||||
```
|
||||
sudoedit /etc/ld.so.preload
|
||||
```
|
||||
|
||||
and add:
|
||||
|
||||
```
|
||||
/usr/lib/libhardened_malloc.so/libhardened_malloc.so
|
||||
```
|
||||
|
||||
<br>
|
||||
|
||||
#### Fedora
|
||||
|
||||
Running in Dom0:
|
||||
|
||||
```
|
||||
sudo qubes-dom0-update qubes-template-fedora-36-minimal
|
||||
```
|
||||
|
||||
Running inside the template:
|
||||
|
||||
```
|
||||
sudo dnf update
|
||||
```
|
||||
|
||||
Installing packages
|
||||
|
||||
```
|
||||
sudo dnf install qubes-core-agent-passwordless-root qubes-core-agent-dom0-updates qubes-usb-proxy qubes-gpg-split qubes-core-agent-networking git -y
|
||||
```
|
||||
|
||||
Configuring git proxy
|
||||
|
||||
```
|
||||
git --config global.proxy 127.0.0.1:8002
|
||||
```
|
||||
|
||||
<br>
|
||||
|
||||
#### Upgrading Fedora
|
||||
|
||||
Running in Dom0:
|
||||
|
||||
```
|
||||
qvm-clone fedora-35 fedora-36
|
||||
|
||||
truncate -s 5GB /var/tmp/template-upgrade-cache.img
|
||||
|
||||
qvm-run -a fedora-36 gnome-terminal
|
||||
|
||||
dev=$(sudo losetup -f --show /var/tmp/template-upgrade-cache.img)
|
||||
|
||||
qvm-block attach fedora-<new> dom0:${dev##*/}
|
||||
```
|
||||
|
||||
Running inside Fedora-36:
|
||||
|
||||
```
|
||||
sudo mkfs.ext4 /dev/xvdi
|
||||
|
||||
sudo mount /dev/xvdi /mnt/removable
|
||||
|
||||
sudo dnf clean all
|
||||
|
||||
sudo dnf --releasever=36--setopt=cachedir=/mnt/removable --best --allowerasing distro-sync
|
||||
|
||||
```
|
||||
|
||||
Running inside Dom0:
|
||||
|
||||
```
|
||||
qvm-shutdown fedora-36
|
||||
|
||||
sudo losetup -d $dev
|
||||
|
||||
rm /var/tmp/template-upgrade-cache.img
|
||||
```
|
@ -6,7 +6,7 @@ permalink: /donate
|
||||
---
|
||||
|
||||
## Donations
|
||||
Donations are good. Money is how to keep this "alive".
|
||||
Donations are good. Money is how to keep this project running.
|
||||
|
||||
Monero:
|
||||
|
||||
|
@ -51,16 +51,24 @@ As nature of this website, privacy and security must be our main priority, the f
|
||||
|
||||
- Matrix metrics are disabled.
|
||||
|
||||
|
||||
<br>
|
||||
|
||||
### __Policies__
|
||||
|
||||
Your data and information will **NEVER** be sold or shared to another party.
|
||||
Matrix federation may cause some information to be sent to third party servers as this is how federation functions.
|
||||
|
||||
Your data and information will **NEVER** be handed away to *anyone*.
|
||||
|
||||
We try to collect as little information as possible, to protect *everyone*.
|
||||
|
||||
#### __Matrix__
|
||||
|
||||
The Matrix homeserver is located at
|
||||
|
||||
``https://matrix.anonymousland.org``
|
||||
|
||||
As of currently, we do not offer a self-hosted Element instance, as it takes up server resources and there is no current need for our self-hosted platform.
|
||||
[element.anonymousland.org](https://element.anonymousland.org) - Self-hosted Element instance
|
||||
|
||||
Password Policy:
|
||||
|
||||
|
2
index.md
2
index.md
@ -44,7 +44,9 @@ description: A fun happy place.
|
||||
<li><a href="./donate">Donate</a> </li>
|
||||
<li><a href="./guide">Guide</a> </li>
|
||||
<li><a href="./information">Information</a> </li>
|
||||
<li><a href="./qubes">QubesOS</a> </li>
|
||||
<li><a href="./tools">Tools</a> </li>
|
||||
<li><a href="./services">Services</a> </li>
|
||||
|
||||
|
||||
</div>
|
Loading…
Reference in New Issue
Block a user