安装软件
apt install qbittorrent-nox
创建qBittorrent服务
nano /etc/systemd/system/qbittorrent.service
openwrt passwall2
成功搭了个梯子。
armbian安装桌面和xrdp
安装桌面
apt install lxde
安装xrdp
apt install xrdp xorg xorgxrdp
systemctl enable xrdp
openwrt旁路由
打开网卡混杂模式
ip link set eth0 promisc on
创建OpenWrt网络
docker network create -d macvlan --subnet=192.168.0.0/24 --gateway=192.168.0.1 -o parent=eth0 openwrt
linux挂载内存卡
linux挂载内存卡的方法。
win系统ssh上传下载文件
使用Windows自带的ssh命令传输文件
ssh username@remote_host
登录后,可以使用如下命令复制文件到远程服务器:
scp C:\path\to\local\file.txt username@remote_host:/path/to/remote/directory/
从远程服务器复制文件到本地:
scp username@remote_host:/path/to/remote/file.txt C:\path\to\local\direct
0%