Skip to content

常用操作

>

1. 查找磁盘占用

1.1 获取系统情况

bash
df -h

1.2 查看一个目录的情况

bash
ls -A|xargs du -sh
  • ls -A 列出当前目录下的所有文件和目录,包括隐藏的,但不包括 ...
  • xargs du -shls -A 的输出作为 du -sh 的参数。

2. 软件安装apt

升级源

bash
apt upgrade

查看软件版本

bash
apt info app

3. hombrew国内安装

ubuntu

Change ~/.bashrc

bash
#将Homebrew源替换成中科大的Homebrew源
export HOMEBREW_BREW_GIT_REMOTE="https://mirrors.ustc.edu.cn/brew.git"
export HOMEBREW_BREW_GIT_REMOTE="https://mirrors.ustc.edu.cn/brew.git"
export HOMEBREW_CORE_GIT_REMOTE="https://mirrors.ustc.edu.cn/homebrew-core.git"
export HOMEBREW_BOTTLE_DOMAIN="https://mirrors.ustc.edu.cn/homebrew-bottles"
export HOMEBREW_API_DOMAIN="https://mirrors.ustc.edu.cn/homebrew-bottles/api"
#增加Homebrew环境变量
export PATH="/opt/homebrew/bin:$PATH"
bash
source .bashrc

Install

bash
/bin/bash -c "$(curl -fsSL https://mirrors.ustc.edu.cn/misc/brew-install.sh)"

加环境变量

bash
echo 'eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"' >> /home/cartier/.bashrc
source .bashrc

测试

bash
brew help