上一页 1 2 3 4 5 6 ··· 23 下一页
摘要: $ sudo apt-get install -f (Over) 阅读全文
posted @ 2023-10-15 12:15 Anonymous596 阅读(5) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/wsuyixing/article/details/125242142 阅读全文
posted @ 2023-08-08 23:10 Anonymous596 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 1)准备一个 U 盘,例如系统识别为 /dev/sdb, 删掉其分区 (fdisk /dev/sdb , then d, then w) 2)$ sudo dd if=/path/to/*.iso of=/dev/sdb 不过上述命令没有进度显示,干着急…… 3)安装 pv(pipe viewer) 阅读全文
posted @ 2023-07-29 21:48 Anonymous596 阅读(34) 评论(0) 推荐(0) 编辑
摘要: update-alternatives 是 Ubuntu 的软件多版本管理工具,基本用法为, update-alternatives --install <link> <name> <path> <priority> [--force] 例如,我要创建一个符号链接 /usr/bin/cmake ,它 阅读全文
posted @ 2023-07-02 09:20 Anonymous596 阅读(328) 评论(0) 推荐(0) 编辑
摘要: 僵尸进程: 一个父进程利用 fork 创建子进程,如果子进程退出,而父进程没有利用 wait 或者 waitpid 来获取子进程的状态信息,那么子进程的状态描述符依然保存在系统进程表中。 孤儿进程: 一个父进程退出, 而它的一个或多个子进程仍然还在运行,那么这些子进程就会变成孤儿进程,孤儿进程将被 阅读全文
posted @ 2023-06-15 14:40 Anonymous596 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 现代 Linux 都采用 systemd 来作为守护进程,例如在 Ubuntu 18.04 上它们都指向同一个 systemd, $ ll /sbin/init /sbin/init -> /lib/systemd/systemd*$ ll /bin/systemd /bin/systemd -> 阅读全文
posted @ 2023-03-12 17:09 Anonymous596 阅读(515) 评论(0) 推荐(0) 编辑
摘要: Adjust your python to version no less than 3.7, (use conda do it if your default python is not 3.7) a config error, as: ERROR: Dependency "pixman-1" n 阅读全文
posted @ 2023-02-25 22:45 Anonymous596 阅读(10) 评论(0) 推荐(0) 编辑
摘要: need to with channel pdrops, $ conda install -c pdrops allure-pytest 阅读全文
posted @ 2023-02-20 20:02 Anonymous596 阅读(94) 评论(0) 推荐(0) 编辑
摘要: pytest-env is a good module, allow you to set env variable in pytest.ini as for example, [pytest] env = SCM=git 阅读全文
posted @ 2023-02-17 15:25 Anonymous596 阅读(29) 评论(0) 推荐(0) 编辑
摘要: - conda append channels, $ conda config --append channels conda-forge then a simple conda config ~/.condarc should be, auto_activate_base: false show_ 阅读全文
posted @ 2023-01-02 15:12 Anonymous596 阅读(14) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 23 下一页