菜单中选择 Preferences > Browse Packages… ,在弹出的文件夹中,克隆 git 仓库:
git clone https://github.com/sublime-china/sublime-merge-chinese.git Default
重启软件即可。
菜单中选择 Preferences > Browse Packages… ,在弹出的文件夹中,克隆 git 仓库:
git clone https://github.com/sublime-china/sublime-merge-chinese.git Default
重启软件即可。
编辑文件 /etc/netplan/00-installer-config.yaml
,修改为以下格式:
network:
ethernets:
ens33: # 配置的网卡的名称
optional: true # 可选接口,找不到时不会报错
addresses: [192.168.253.133/24]
dhcp4: false # 关闭dhcp4
gateway4: 192.168.253.2
nameservers:
addresses: [192.168.253.2,114.114.114.114]
version: 2
默认情况下,PVE只升级debian的系统,不会升级PVE管理,要同一起升级,需要添加 No-Subscription 库,具体步骤如下。
在左侧菜单中,选择一个节点,然后在管理菜单中单击“更新”下的“软件源”(Repositories),点击“添加”按钮,选择“No-Subscription”。
在管理菜单中点击“更新”,点击“刷新”,完成后点击“升级”即可。
升级完成后,可能需要重启服务器。
启动 mysql:8.* 效果很好,但 mysql:5.7.* 会导致立即 100% 内存消耗,尝试通过以下方法解决。
/lib/systemd/system/containerd.service
,修改 LimitNOFILE=infinity
为 LimitNOFILE=1048576
再尝试启动 mysql 容器。
/etc/docker/daemon.json
{
// 原有配置...
"default-ulimits": {
"nofile": {
"Name": "nofile",
"Hard": 64000,
"Soft": 64000
}
}
}
2. 重启服务 systemctl restart docker
。
参考:https://sukbeta.github.io/docker-ulimit-configure/
前提是安装了 android studio,在 linux 中,使用以下命令:
~/Android/Sdk/build-tools/33.0.2/aapt dump <app.apk>
其中,33.0.2
要改成自己实际的版本。
找到 dbeaver 的执行位置,查看它的安装位置:
$ which dbeaver
/usr/bin/dbeaver
$ cat /usr/bin/dbeaver
export GTK_OVERLAY_SCROLLING=0
/usr/lib/dbeaver/dbeaver $@
进入 /usr/lib/dbeaver/
目录,编辑 dbeaver.ini
,在 -vmargs
上面,添加以下内容:
-vm
/usr/lib/jvm/java-17-openjdk/bin
注意:确保已经安装了dbeaver指定的 jre/jdk 版本,并获取其目录。
To configure the restart policy for a container, use the --restart
flag when using the docker run
command. The value of the --restart
flag can be any of the following:
Flag | Description |
---|---|
no | Do not automatically restart the container. (the default) |
on-failure[:max-retries] | Restart the container if it exits due to an error, which manifests as a non-zero exit code. Optionally, limit the number of times the Docker daemon attempts to restart the container using the :max-retries option. |
always | Always restart the container if it stops. If it is manually stopped, it is restarted only when Docker daemon restarts or the container itself is manually restarted. (See the second bullet listed in restart policy details) |
unless-stopped | Similar to always , except that when the container is stopped (manually or otherwise), it is not restarted even after Docker daemon restarts. |
参考:https://docs.docker.com/config/containers/start-containers-automatically/
用记事本打开 vmx
文件,在文件最后添加以下内容:
monitor_control.restrict_backdoor = "TRUE"
保存文件后,再次启动虚拟机即可。
参考:https://developer.aliyun.com/article/536362
C:\ProgramData\Microsoft\Windows\Start Menu\Programs\StartUp
提示信息可能像这样:
Could not connect 'Ethernet0' to virtual network '/dev/vmnet0'. More information can be found in the vmware.log file.
Failed to connect virtual device 'Ethernet0'.
尝试以下操作:
sudo systemctl restart vmware-networks
# 61 改为自己的版本
yay -S linux61 linux61-headers
重启后再试。
sudo touch /etc/vmware/x && sudo vmware-networks --migrate-network-settings /etc/vmware/x && sudo rm /etc/vmware/x && sudo modprobe vmnet && sudo vmware-networks --start
参考: