可以使用pkexec代替gksu 和 sudo
pkexec bash
可以使用pkexec代替gksu 和 sudo
pkexec bash
linux下Qt creator 不显示qDebug输出, 可以在qtcreator的.desktop文件添加环境变量。
env QT_ASSUME_STDERR_HAS_CONSOLE=1 qtcreator
源代码原编写于Windows系统中,迁移到Linux上后使 …
更新openSUSE 15.4, 发现 qtcreator 挂了。
~> qtcreator
qtcreator: error while loading shared libraries: libExtensionSystem.so.6: cannot open shared object file: No such file or directory
最终还是在系统里找到了这个文件
~> zypper search -f libExtensionSystem.so …
统计代码行数可以使用cloc,gocloc
apt install cloc
cloc .
cloc xxx-source.tar.gz
# https://github.com/hhatto/gocloc
gocloc .
命令参考
snapper list # 查看快照
snapper statu PRE..POST #命令以获取快照对的已更改文件列表 …
xwininfo xprop
Xwininfo is a utility for displaying information about windows. The xprop utility is for displaying window and font properties in an X server.
QString转char*的正确方法
QString().toLocal8Bit().constData()
QString().toUtf8().constData()
code --proxy-server=127.0.0.1:1080
go生成函数调用关系图
~/go/bin/go-callvis -nostd -group pkg,type .
# 会自动打开浏览器localhost:7878
# 中文语言环境下,xdg-user-dirs使用英文名称
LANG=C xdg-user-dirs-gtk-update # 同意更新
xdg-user-dirs-gtk-update # 保留且不再询问
使用minicom登录的时候,远程终端窗口大小和本地窗口不一致。 远程窗口小不好用。
经测试可以用 sudo screen /dev/ttyUSB0 115200
来登录, 登录后使 …
ip link add link eth0 name macvlan0 type macvlan mode bridge
ip link delete macvlan0
# 记录一下此用法。 thd来自 debian 软件包 triggerhappy
if [ -x /usr/sbin/thd ] && timeout 1 thd --dump /dev/input/event* | grep -q "LEFTSHIFT\|RIGHTSHIFT"; then
printf "xxxxxxxx"
fi