Advanced Search
Search Results
91 total results found
Radicale - Cal and CardDav
1. Install Packages apt update apt dist-upgrade apt install radicale apache2-utils 2. Authentication In its default configuration Radicale doesn't check usernames or passwords. If the server is reachable over a network, you should change this. First a users f...
Webdav using Apache2
Step 1: Install Required Packages First, ensure that you have Apache2 and the necessary modules installed. You can install them using the package manager for your distribution. For example, on Ubuntu or Debian, you can run: sudo apt install apache2 apache2-uti...
Upgrade FreeBSD
Upgrading FreeBSD from one minor version to another, such as from FreeBSD 14.0 to 14.2, can typically be done using the freebsd-update tool. Here’s a step-by-step guide on how to perform the upgrade: Step 1: Backup Your Data Before performing any upgrade, it's...
Change Hostname
Changing the hostname in FreeBSD can be done in a few simple steps. Here’s how to do it: Step 1: Change the Hostname Temporarily To change the hostname temporarily (until the next reboot), you can use the hostname command. Open a terminal and run: sudo hostnam...
First Steps
Add User To system root@balrock:~ # adduser Username: username Full name: Uid (Leave empty for default): Login group [username]: Login group is username. Invite username into other groups? []: wheel Login class [default]: Shell (sh csh tcsh bash rbash nolo...
Create Jail, Networking and NAT
Step 1: Enable IP Forwarding First, you need to enable IP forwarding on your FreeBSD host. This allows the host to forward packets between the jail and the outside network. Edit the /etc/sysctl.conf file and add the following line: net.inet.ip.forwarding=1 Ap...
Weechat conf
/server add uugrn irc.uugrn.org/6679 -ssl -autoconnect /set irc.server.uugrn.username "MeinNickname" /set irc.server.uugrn.autojoin "#uugrn" /connect uugrn /save /server add spotchat irc.spotchat.org/6667 -ssl -autoconnect /set irc.server.spotchat.autojoin "#l...
Install Software in Template using proxy
wget proxy Issue in Terminal: https_proxy=http://127.0.0.1:8082/ http_proxy=http://127.0.0.1:8082/ Then you can flatpak install xyz or sudo extrepo enable xyz Clone git in template git config --global http.proxy http://127.0.0.1:8082 then you can git clone...
Copy from and to dom0
Copy to dom0 qvm-run --pass-io vm-name "cat /path/to/file/in/vm" > "/path/to/file/in/dom0" Copy from dom0 qvm-copy-to-vm <target_vm> <file>
AWUS 1900 - Linux Drivers
rtl8814au Drivers for the rtl8814au chipset wireless adapters Install Dependencies sudo apt update sudo apt install linux-headers-amd64 dkms rfkill git iw bc mokutil build & install git clone https://github.com/morrownr/8814au cd 8814au sudo ./install-driver....
Install custom Kernel in TemplateVM
install linux kernel sudo apt install linux linux-headers grub-install /dev/xvda grub-mkconfig -o /boot/grub/grub.cfg mkinitcpio -p linux switch vm to HVM in QubesManager
Attach Devices
Attach USB Device Once qvm-device usb attach vmname sys-usb:X-x Persistent qvm-device usb attach --persistent vmname sys-usb:X-x Attach Blockdevices Once qvm-block attach vmname dom0:diskname persistent qvm-block attach --persistent vmname dom0:diskname
Change Shell in Templates
sudo usermod -s /usr/bin/fish user
Enable USB support on StandaloneVM
qvm-features [standalone-qube] stubdom-qrexec 1
Install Software in dom0
sudo qubes-dom0-update <packagename>
Initial Configuration
Allow ipv6 edit vim /etc/default/ufw and add: IPV6=yes Deny incoming default ufw default deny incoming allow outcoming ufw default allow outgoing Allow SSH / HTTP / HTTPS: ufw allow 22/tcp ufw allow 80/tcp ufw allow 443/tcp
Create a hidden Service
Install Tor 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). apt install apt-transport-https Create a new file in /etc/apt/sources.list...
Set up a Kubernetes cluster
INSTALLING KUBERNETES INSTALL CONTAINERD # update packages in apt package manager sudo apt update && apt dist-uppgrade # install containerd using the apt package manager # containerd is lightwieght, reliable and fast (CRI native) sudo apt-get install -y conta...