This commit is contained in:
light
2019-01-30 17:16:51 +08:00
parent bbfe5ed3a6
commit 7f24f5478e
82 changed files with 136 additions and 11 deletions
+17
View File
@@ -0,0 +1,17 @@
# apt 源
## ubuntu 18.04
```bash
deb http://mirrors.aliyun.com/ubuntu/ bionic main restricted
deb http://mirrors.aliyun.com/ubuntu/ bionic-updates main restricted
deb http://mirrors.aliyun.com/ubuntu/ bionic universe
deb http://mirrors.aliyun.com/ubuntu/ bionic-updates universe
deb http://mirrors.aliyun.com/ubuntu/ bionic multiverse
deb http://mirrors.aliyun.com/ubuntu/ bionic-updates multiverse
deb http://mirrors.aliyun.com/ubuntu/ bionic-backports main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ bionic-security main restricted
deb http://mirrors.aliyun.com/ubuntu/ bionic-security universe
deb http://mirrors.aliyun.com/ubuntu/ bionic-security multiverse
```
Executable → Regular
View File
Executable → Regular
View File
Executable → Regular
View File
View File
Executable → Regular
View File
Executable → Regular
View File
Executable → Regular
View File
Executable → Regular
View File
+6
View File
@@ -0,0 +1,6 @@
# synergy
```bash
sudo apt install synergy
sudo apt-get install sni-qt
```
Executable → Regular
View File
Executable → Regular
View File
Executable → Regular
View File
+24
View File
@@ -0,0 +1,24 @@
# user
## create user
```bash
useradd git
# 制定用户默认的shell
chsh git -s /bin/bash
# 更改权限
chown -R git:git /home/git
```
## auth
```bash
## 只修改文件权限 -type d 为修改目录权限
find workspace -type f -exec chmod 644 {} \;
```
Executable → Regular
View File