# 锐角云N3450

# 关于 Proxmox VE 安装

一键DD方法: 需要:一个空U盘

  1. 下载救援模式ISO:https://n3450.cloud/systemrescue-8.05-amd64.iso (opens new window) ,并使用 Rufus 写入U盘
  2. 使用该U盘启动,使用第二个启动项(Boot SystemRescue and Copy system to Ram (Copytoram))进入
  3. 有网的情况下,执行: wget -O - https://n3450.cloud/proxmox.img.gz (opens new window) | gunzip | dd of=/dev/mmcblk1 && reboot 登录:root/password 首次进入要执行一下 bash /reset.sh 来初始化一下 10.100.99.1 并不是机器的ip地址,装好后默认是通过dhcp获取ip的。 从路由器端得到IP后,访问 https://IP:8006 (opens new window) 进入后台。

自动DD方法 (opens new window)

修改检测方法 (opens new window)

手动安装方法 (opens new window)

# Pve连接wifi(debian通用)

原文地址: Proxmox VE(PVE)连接WiFi及一些配置 (opens new window)

1.编辑源 ``` shell

```

# VPS测试

一键脚本

curl -Lso- https://raw.githubusercontent.com/wn789/Superspeed/master/superbench.sh | bash
1

# ubuntu安装qbittorrent


# 添加源
sudo add-apt-repository ppa:qbittorrent-team/qbittorrent-stable
# 更新源并安装
sudo apt-get update && sudo apt-get install qbittorrent-nox
# 添加用户
sudo adduser --system --group qbittorrent-nox
sudo adduser ubuntu qbittorrent-nox
# 添加服务
sudo vim /etc/systemd/system/qbittorrent-nox.service
# 启动服务
sudo systemctl start qbittorrent-nox

1
2
3
4
5
6
7
8
9
10
11
12
13
[Unit]
Description=qBittorrent Command Line Client
After=network.target

[Service]
#Do not change to "simple"
Type=forking
User=qbittorrent-nox
Group=qbittorrent-nox
UMask=007
ExecStart=/usr/bin/qbittorrent-nox -d --webui-port=8080
Restart=on-failure

[Install]
WantedBy=multi-user.target
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

# 开启bbr


echo "net.core.default_qdisc=fq" >> /etc/sysctl.conf
echo "net.ipv4.tcp_congestion_control=bbr" >> /etc/sysctl.conf 
# 保存生效 
sysctl -p
# 执行,如果结果中有bbr, 则证明你的内核已开启bbr
sysctl net.ipv4.tcp_available_congestion_control
# 执行 , 看到有 tcp_bbr 模块
lsmod | grep bbr 

1
2
3
4
5
6
7
8
9
10

# oracle cloud开放防火墙


sudo iptables -P INPUT ACCEPT
sudo iptables -P FORWARD ACCEPT
sudo iptables -P OUTPUT ACCEPT
sudo iptables -F

1
2
3
4
5
6
最后更新:: 3/12/2024, 3:17:51 PM