01 2019 档案
摘要:安装图形界面 apt-get install ubuntu-desktop 配置用户目录 sudo useradd -s /bin/bash -d /home/shuyi -m shuyi 修改密码 sudo passwd shuyi
阅读全文
摘要:1) Try both without sudo, apt-get download will pass and apt-get -d install will fail (root required) 2) By default apt-get -d install will save .deb
阅读全文
摘要:Command line instructions Git global setup git config --global user.name "shuyi" git config --global user.email "88888888@wangshuyi.cn" Create a new r
阅读全文
摘要:MIPS: Million Instructions executed Per SecondDMIPS: Dhrystone Million Instructions executed Per SecondMFLOPS: Million Floating-point Operations Per S
阅读全文
摘要:压缩工具--pigz 压缩: tar cvf - 目录名 | pigz -9 -p 24 > file.tgz pigz:用法-9是压缩比率比较大,-p是指定cpu的核数。 解压: pigz -d file.tgz 这时候是tar包,那么在用 tar -xvf file.tar 解包。 速度比较gz
阅读全文
摘要:最近使用GitLab 搭建了Git的私有仓库,但是发现私有仓库的地址是一串序列号,搞了半天克隆时都是提醒仓库无效,后来才觉得不对,不是本机的IP地址如图 对此我们需要修改gitlab.yml文件: 1:进入命令行界面输入 [root@localhost config]# cd /opt/gitlab
阅读全文