文章预览
linux用户修改个人目录下的.gitconfig文件 ``` [user] email = [email protected] name = Terry chan [http] proxy = socks5://127.0.0.1:2333 [https] proxy = socks5://127.0.0.1:2333…
文章
标签
喜欢
共找到 35 篇相关文章
文章预览
linux用户修改个人目录下的.gitconfig文件 ``` [user] email = [email protected] name = Terry chan [http] proxy = socks5://127.0.0.1:2333 [https] proxy = socks5://127.0.0.1:2333…
文章预览
列出screens: ---------- > > screen -list or screen -ls > > > Output: > > There is a screen on: > 23536.pts-0.wdzee (10/04/2012 08:40:45 AM) (Detached) > 1 Socket in /va…
文章预览
mariadb数据库“Could not open mysql.plugin table. ”错误,应该是mysql和mariadb不兼容导致的 。 对于 Arch Linux系统,可以使用以下方法解决 ``` #查看状态 systemctl status mariadb #关闭数据库 systemctl stop mariadb #删除 rm -R…
文章预览
下面是一个参考脚本 ``` #!/bin/bash n=0 while [ $n -lt 80 ]; do echo "${n}:" curl -x socks5://127.0.0.1:38801 ifconfig.me #curl -x是指定代理方式连接,ifconfig.me是一个查询外网IP的网站 echo "----…
文章预览
使用python代码获取linux的系统负载 > > import os > os.getloadavg () > > > (1.1200000000000001, 1.0600000000000001, 0.79000000000000004) From there, you can do whatever checks you…
文章预览
Manjaro Linux is based on Arch Linux and does not use the Debian package format. Therefore, it is not possible to install .deb packages directly on Manjaro. However, there are som…
文章预览
Shutter is a popular screenshot tool available .It is still an excellent choice for handling screenshots. ![Take and edit screenshots in Linux with Shutter](https://terrychanorg.o…
文章预览
Graphical applications are easy to use, but terminal or command line programs are faster. Installation of Software in Manjaro Linux with Pacman : To install an application, all yo…
文章预览
Snap is a package manager that provides a variety of desktop software for Linux-based operating systems .The snap packages can be installed using terminal support of Linux. Manjar…