-
Notifications
You must be signed in to change notification settings - Fork 1
/
mkdocs.yml
executable file
·236 lines (222 loc) · 7.19 KB
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
site_name: 服务器使用指南
site_url: https://guide.wenzhi-ding.com/
site_author: 丁文治
site_description: >-
本网站为用户使用 Linux 服务器进行学术研究提供使用指引。
This website provide guidance for using Linux servers for academic research.
repo_name: Wenzhi-Ding/Server_User_Guide
repo_url: https://github.com/Wenzhi-Ding/Server_User_Guide
copyright: Copright © 2021 - 2023 丁文治
theme:
name: material
include_search_page: false
search_index_only: true
language: zh
features:
- content.code.annotate
- content.tabs.link
# - header.autohide
- navigation.expand
- navigation.indexes
- navigation.instant
- navigation.sections
- navigation.tabs
- navigation.tabs.sticky
- navigation.top
- navigation.tracking
- search.highlight
- search.share
- search.suggest
- toc.follow
# - toc.integrate
palette:
# Toggle light mode
- scheme: default
primary: white
accent: indigo
# toggle:
# icon: material/weather-sunny
# name: 切换至深色模式
# Toggle dark mode
# - scheme: slate
# primary: black
# accent: black
# toggle:
# icon: material/weather-night
# name: 切换至浅色模式
font:
text: Roboto
code: Roboto Mono
favicon: assets/favicon.png
icon:
logo: logo
logo: assets/favicon.png
plugins:
- search
- minify:
minify_html: true
# - mkdocs-jupyter
- i18n:
docs_structure: suffix
languages:
- locale: zh
default: true
name: 中文
build: true
- locale: en
name: English
build: true
site_name: Server User Guide
copyright: Copyright © 2021 - 2023 Wenzhi (Dave) Ding
nav:
- Home: index.md
- Connect:
- Windows: 01-connect/win.md
- macOS: 01-connect/mac.md
- Android: 01-connect/android.md
- iOS: 01-connect/ios.md
- Conda:
- Installation: 02-conda/install.md
- Usage: 02-conda/use.md
- Jupyter Lab:
- VSCode Version: 03-jupyter/vscode.md
- Installation: 03-jupyter/install.md
- Web Version: 03-jupyter/web.md
- Usage Guide: 03-jupyter/use.md
- Linux:
- Basic Commands: 08-linux/basic.md
- Running Programs in the Background: 08-linux/screen.md
- Graphical Interface: 08-linux/gui.md
- Editing Files in Command Line: 08-linux/vim.md
- Synchronizing Files Between Servers: 08-linux/rsync.md
- Passwordless Login: 08-linux/pubkey.md
- Checking Memory Cache Usage: 08-linux/smem.md
- System Management: 08-linux/system-manage.md
- Firewall and Access Restrictions: 08-linux/firewall.md
- Jump Proxy: 08-linux/jump-proxy.md
- Python:
- Installation: 06-python/install.md
- Environment Management: 06-python/env.md
- Using Multiple Processes: 06-python/parallel.md
- Matplotlib: 06-python/matplotlib.md
- Pandas: 06-python/pandas.md
- Stata:
- Using Stata in Jupyter Lab: 04-stata/jupyter.md
- Graphical Interface: 04-stata/gui.md
- Command Line Usage: 04-stata/command-line.md
- PyStata Examples: 04-stata/pystata.ipynb
- Stata Kernel Examples: 04-stata/stata_kernel.ipynb
- SAS:
- Using SAS in Jupyter Lab: 05-sas/jupyter.md
- Graphical Interface: 05-sas/gui.md
- Command Line Usage: 05-sas/command-line.md
- JMP: 05-sas/jmp.md
- SQL:
- PostgreSQL: 10-sql/postgre.md
- SQLite: 10-sql/sqlite.md
- GPU:
- CUDA: 12-gpu/cuda.md
- Data and Permissions: data.md
- Recommended Practices:
- Project File Management: 11-practice/file-index.md
- Git Version Control: 11-practice/git.md
- Team Collaboration: team.md
- git-revision-date-localized
extra:
analytics:
provider: google
property: G-V07KXKQTMQ
markdown_extensions:
- abbr
- admonition
- attr_list
- def_list
- footnotes
- meta
- md_in_html
- toc:
permalink: true
- pymdownx.arithmatex:
generic: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.details
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.magiclink:
repo_url_shorthand: true
user: squidfunk
repo: mkdocs-material
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
nav:
- 首页: index.md
- 连接:
- Windows: 01-connect/win.md
- macOS: 01-connect/mac.md
- Android: 01-connect/android.md
- iOS: 01-connect/ios.md
- Conda:
- 安装: 02-conda/install.md
- 使用: 02-conda/use.md
- Jupyter Lab:
- VSCode版: 03-jupyter/vscode.md
- 安装: 03-jupyter/install.md
- 网页版: 03-jupyter/web.md
- 操作简介: 03-jupyter/use.md
- Linux:
- 基本命令: 08-linux/basic.md
- 后台稳定运行程序: 08-linux/screen.md
- 图形界面: 08-linux/gui.md
- 命令行编辑文件: 08-linux/vim.md
- 服务器间同步文件: 08-linux/rsync.md
- 免密码登录: 08-linux/pubkey.md
- 检查内存缓存占用: 08-linux/smem.md
- 系统管理: 08-linux/system-manage.md
- 防火墙与访问限制: 08-linux/firewall.md
- 跳板代理: 08-linux/jump-proxy.md
- Python:
- 安装: 06-python/install.md
- 环境管理: 06-python/env.md
- 使用多进程: 06-python/parallel.md
- Matplotlib: 06-python/matplotlib.md
- Pandas: 06-python/pandas.md
- Stata:
- Jupyter Lab: 04-stata/jupyter.md
- 图形界面: 04-stata/gui.md
- 命令行使用: 04-stata/command-line.md
# - PyStata样例: 04-stata/pystata.ipynb
# - Stata Kernel样例: 04-stata/stata_kernel.ipynb
- SAS:
- Jupyter Lab: 05-sas/jupyter.md
- 图形界面: 05-sas/gui.md
- 命令行使用: 05-sas/command-line.md
- JMP: 05-sas/jmp.md
- SQL:
- PostgreSQL: 10-sql/postgre.md
- SQLite: 10-sql/sqlite.md
- GPU:
- CUDA: 12-gpu/cuda.md
- 升级: 12-gpu/upgrade.md
- 数据及权限: data.md
- 推荐实践:
- 项目文件管理: 11-practice/file-index.md
- Git版本管理: 11-practice/git.md
- 团队协作: team.md
# - R:
# - RStudio: 07-r/rstudio.md
# - MATLAB:
# - 官方方案: 09-matlab/official.md