Jump to...
redirecting...

Log for Ubuntu 台灣社群

LibreOffice 6.3 drops 32-bit Linux Builds https://twitter.com/omgubuntu/status/1135941328020357120
32bit 要絕跡了
工三洨
那我的怎用成功的
通靈啦
Oh
[ ! -c /dev/net/tun ] && mknod /dev/net/tun c 10 200
有啥好通靈,啊就他預設沒有把 /dev/net/tun 打出來而已吼,自己打出來就好了
結果有
那就是有不知道是誰幫你打了
server 版自己弄得吧
在 proxmox ve 的 lxc container 預設都是沒打的,要自己打
所以我有個專門打 tun 的 shell script
# cat /opt/openvpn-pre
#!/bin/bash

if [ ! -d /dev/net ]; then
 mkdir -p /dev/net
fi
if [ ! -c /dev/net/tun ]; then
 mknod /dev/net/tun c 10 200
fi
chmod 600 /dev/net/tun
cat /dev/net/tun 2> /dev/null | grep "File descriptor in bad state"
sysctl -p

exit 0