Skip to content

Instantly share code, notes, and snippets.

View n0a's full-sized avatar
🏓
Focusing

Denis Simonov n0a

🏓
Focusing
View GitHub Profile
@n0a
n0a / README.md
Created September 14, 2024 14:18 — forked from tomdaley92/README.md
Proxmox - SPICE Client setup for MacOS

Proxmox - SPICE client setup for MacOS

  1. Install a working (and compiled) version of virt-viewer. You may view the homebrew package's upstream source on GitHub.

    brew tap jeffreywildman/homebrew-virt-manager
    brew install virt-viewer
  2. Once that's installed should be able make a call remote-viewer with a pve-spice.vv file downloaded from proxmox web interface

@n0a
n0a / README.md
Created September 14, 2024 14:18 — forked from tomdaley92/README.md
Proxmox - SPICE Client setup for MacOS

Proxmox - SPICE client setup for MacOS

  1. Install a working (and compiled) version of virt-viewer. You may view the homebrew package's upstream source on GitHub.

    brew tap jeffreywildman/homebrew-virt-manager
    brew install virt-viewer
  2. Once that's installed should be able make a call remote-viewer with a pve-spice.vv file downloaded from proxmox web interface

@n0a
n0a / socks5_srv.sh
Last active August 2, 2024 22:53
Auto setup socks5 dante server with random user:pass // For deb dased distr only
#!/bin/bash
# by n0a // https://n0a.pw
# Обновление списка пакетов и установка dante-server
sudo apt update
sudo apt install -y dante-server
# Создание конфигурационного файла для PAM
cat <<EOL | sudo tee /etc/pam.d/sockd
auth required pam_unix.so
account required pam_unix.so
@n0a
n0a / pihole-macvlan-synology-docker.txt
Created March 22, 2022 11:27 — forked from xirixiz/pihole-macvlan-synology-docker.txt
Add a PiHole instance on a macvlan enabled Docker network (Synology eth0 example)
#!/bin/bash
# NAS IP: 192.168.1.10 in this example
# DHCP scope reservation for macvlan: 192.168.1.210/28 (Details below)
## Network: 192.168.1.210/28
## HostMin: 192.168.1.211
## HostMax: 192.168.1.224
## Hosts/Net: 14
# Create a Synology macvlan0 bridge network attached to the physical eth0, and add the ip range scope (sudo)
@n0a
n0a / QEMU-Silicon-Mac-Virtualization.md
Created June 23, 2021 01:34 — forked from nrjdalal/QEMU-Silicon-Mac-Virtualization.md
Create Virtual Machines using QEMU on Silicon based Apple Macs

Install QEMU on Silicon based Apple Macs (June 2021)

Option 1 - Automatically

zsh -c "$(curl -fsSL https://raw.githubusercontent.com/nrjdalal/silicon-virtualizer/master/install-qemu.sh)"

Option 2 - Manually

  • Install Xcode command line tools

xcode-select --install