-
Usage: python.exe -m nuitka [--mode=compilation_mode] [--run] [options] main_module.py Note: For general plugin help (they often have their own command line options too), consider the output of '--help-plugins'. Options: 选项: --help show this help message and exit --version Show version information and important details …
阅读更多 -
PVE 节点的网络配置,在 WebUI 里只能设置为静态地址,想设置DHCP的话需要使用以下方法。 方法一 1$ cp /etc/network/interfaces /etc/network/interfaces.new 1# /etc/network/interfaces.new 2... 3# IPv4 4iface vmbr0 inet dhcp 5 # address 192.168.1.66/24 6 # gateway 192.168.1.1 7 bridge-ports enp1s0 8 bridge-stp off
阅读更多 -
NcFTP 是 Linux 上常用的 FTP客户端工具,非常好用,这里记录它的常见用法。 ncftp FTP浏览工具 1$ ncftp 2# 一定注意参数顺序 3ncftp > open -u <username> -p <password> <remote-host> 4# 使用被动模式传输 5ncftp >
阅读更多 -
安装 1$ yum install https://download.postgresql.org/pub/repos/yum/10/redhat/rhel-7-x86_64/pgdg-centos10-10-2.noarch.rpm 2 3# 安装服务端包 4$ yum install postgresql10-server postgresql10 配置 1# 初始化数据库,设置自启动 2$ /usr/pgsql-10/bin/postgresql-10-setup initdb 3$ systemctl enable postgresql-10 4$ systemctl start postgresql-10 5 6# 设置防 …
阅读更多