obsidian项目

This commit is contained in:
游由 2022-04-28 17:16:43 +08:00
parent 7056fa50d3
commit fc0fa283bb
10 changed files with 178 additions and 0 deletions

4
.obsidian/app.json vendored Normal file
View File

@ -0,0 +1,4 @@
{
"legacyEditor": false,
"livePreview": true
}

1
.obsidian/appearance.json vendored Normal file
View File

@ -0,0 +1 @@
{}

15
.obsidian/core-plugins.json vendored Normal file
View File

@ -0,0 +1,15 @@
[
"file-explorer",
"global-search",
"switcher",
"graph",
"backlink",
"page-preview",
"note-composer",
"command-palette",
"editor-status",
"markdown-importer",
"word-count",
"open-with-default-app",
"file-recovery"
]

22
.obsidian/graph.json vendored Normal file
View File

@ -0,0 +1,22 @@
{
"collapse-filter": true,
"search": "",
"showTags": false,
"showAttachments": false,
"hideUnresolved": false,
"showOrphans": true,
"collapse-color-groups": true,
"colorGroups": [],
"collapse-display": true,
"showArrow": false,
"textFadeMultiplier": 0,
"nodeSizeMultiplier": 1,
"lineSizeMultiplier": 1,
"collapse-forces": true,
"centerStrength": 0.518713248970312,
"repelStrength": 10,
"linkStrength": 1,
"linkDistance": 250,
"scale": 1.4019828977761062,
"close": false
}

1
.obsidian/hotkeys.json vendored Normal file
View File

@ -0,0 +1 @@
{}

103
.obsidian/workspace vendored Normal file
View File

@ -0,0 +1,103 @@
{
"main": {
"id": "d9a8f80cc29140c8",
"type": "split",
"children": [
{
"id": "36370fdab1e1da96",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "DVAlg.md",
"mode": "source",
"source": false
}
}
}
],
"direction": "vertical"
},
"left": {
"id": "cadaedfa7ea0cf6e",
"type": "split",
"children": [
{
"id": "a52ff457eec3c61f",
"type": "tabs",
"children": [
{
"id": "827656f689a7e397",
"type": "leaf",
"state": {
"type": "file-explorer",
"state": {}
}
},
{
"id": "e7b518a7466bd9f1",
"type": "leaf",
"state": {
"type": "search",
"state": {
"query": "",
"matchingCase": false,
"explainSearch": false,
"collapseAll": false,
"extraContext": false,
"sortOrder": "alphabetical"
}
}
}
]
}
],
"direction": "horizontal",
"width": 300
},
"right": {
"id": "3e7e4e358d786112",
"type": "split",
"children": [
{
"id": "ce0dbc315f3a7959",
"type": "tabs",
"children": [
{
"id": "44d209489be0688a",
"type": "leaf",
"state": {
"type": "backlink",
"state": {
"file": "DVAlg.md",
"collapseAll": false,
"extraContext": false,
"sortOrder": "alphabetical",
"showSearch": false,
"searchQuery": "",
"backlinkCollapsed": false,
"unlinkedCollapsed": true
}
}
}
]
}
],
"direction": "horizontal",
"width": 300,
"collapsed": true
},
"active": "36370fdab1e1da96",
"lastOpenFiles": [
"DVAlg.md",
"UpdateServices.md",
"Readme.md",
"bcm43xx.md",
"images/image-20210603111732713.png",
"images/image-20210603111842236.png",
"images/image-20210603111816201.png",
"VSCodeRegularExpression.md",
"MoveDockerImageWindows.md",
"Jenkins.md"
]
}

6
GitSkill.md Normal file
View File

@ -0,0 +1,6 @@
```shell
# git 取消设置代理
git config --global --unset http.proxy
git config --global --unset https.proxy
```

5
HttpsCert.md Normal file
View File

@ -0,0 +1,5 @@
# 安装
[certbot](https://certbot.eff.org/)
## 更新

9
Jenkins.md Normal file
View File

@ -0,0 +1,9 @@
# 安装jenkins
```shell
wget -O /etc/yum.repos.d/jenkins.repo https://pkg.jenkins.io/redhat-stable/jenkins.repo
rpm --import https://pkg.jenkins.io/redhat-stable/jenkins.io.key
yum install fontconfig
rpm -ivh jdk-8u202-linux-x64.rpm
yum install jenkins
```

View File

@ -14,6 +14,18 @@ scp [-P port] <filepath> [username@]<host>:<gitea bin path>
wget <url>
```
解压命令
```shell
xz -dk <gitea>.xz
```
添加可执行权限
```shell
chmod +x <gitea bin>
```
升级命令:
```shell