# OperatingSystem **Repository Path**: hewenyuAndroid/operating-system ## Basic Information - **Project Name**: OperatingSystem - **Description**: 操作系统概念 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-04-23 - **Last Updated**: 2024-05-14 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README 操作系统相关练习 > git 配置记住密码 `git config --global credential.helper store` > linux 配置 vscode启动命令 1. 下载 vscode 压缩包 2. 解压到指定目录 3. 配置环境变量 ```bash 打开 ~/.bashrc 文件 gedit ~/.bashrc 在文件底部新增环境变量 export PATH="${PATH}:/home/hewenyu/vscode/code-stable-x64-1715058993/VSCode-linux-x64/bin" 保存文件退出后刷新环境变量 source ~/.bashrc 检测 code 命令 code --version 使用 vscode 打开文件 code source.c ```