myesn

myEsn2E9

hi
github

Ubuntu

cover

Ubuntu 安装 Mac 电脑无线网卡 BCM4331 驱动

通过以下命令自动安装缺失的驱动,这其中包括无线网卡驱动: Copy sudo apt update sudo ubuntu-drivers autoinstall 然后执行以下命令查询 b43 驱动是否被其他驱动列为黑名单,这会导致无线网卡驱动不工作: Copy grep b43…
Ubuntu Desktop 风格
Ubuntu 社区提供了很多好看的桌面风格,喜欢哪个就装哪个: https://ubuntu.com/desktop/flavours
Ubuntu 查询无线网卡是否支持 5G Hz 的 WIFI
无线网卡最低支持 2.4G Hz 的 WIFI,想要查看是否支持 5G Hz,可以参考本文。 Copy sudo apt install wireless-tools -y 先查询无线网卡接口名称: Copy iwconfig 我这里查出来是 wlp3s0,然后再查询无线网…
Ubuntu: 修改软件仓库镜像源
可以用于任何 Linux 发行版,按 CTRL + F 搜索。 https://mirrors.tuna.tsinghua.edu.cn/help/ubuntu/
Ubuntu: 开机时配置网络的步骤需要等待两分钟
Ubuntu 开机时提示 a start job is running for wait for network to be configured,这是在配置网络并需要最多等待两分钟的问题。 这是因为开机自启软件 systemd-networkd-wait-online ,该软…
Ubuntu: 结束指定端口的进程
Copy sudo kill -9 `sudo lsof -t -i:3000` 参考:https://stackoverflow.com/questions/9346211/how-to-kill-a-process-on-a-port-on-ubuntu
Ubuntu: 开机进入 initramfs
当磁盘发生损坏后,无法正常启动系统,这时需要修复磁盘,参考:https://blog.csdn.net/qq_43657247/article/details/126116592
Ubuntu: curl 使用代理
Copy curl -x http://127.0.0.1:7890 参考:https://stackoverflow.com/a/9445516
Ubuntu: apt 使用代理
Copy sudo apt update -o Acquire::http::proxy="socks5h://127.0.0.1:7890/" sudo apt upgrade -y -o Acquire::http::proxy="socks5h://127.0.0.1…
cover

Ubuntu Desktop: 创建桌面快捷方式

在桌面的目录下创建一个?.desktop 的文件,在该文件内填写以下信息: Copy [Desktop Entry] Version=1.0 # 启动的程序版本号(非必须) Type=Application…
Ubuntu: yarn gloabl add not working
Copy export PATH="$(yarn global bin):$PATH" . ~/.bashrc
Ubuntu: 排查大文件占用
如果您的 Ubuntu 系统磁盘已经要满了,您可以使用以下方法来排查大文件占用空间: 使用 df 命令查看磁盘使用情况:在终端输入 df -h 可以查看所有分区的磁盘使用情况。 使用 du 命令查找大文件:在终端输入 du -sh * 可以查看当前目录下所有文件的大小…
Ownership of this blog data is guaranteed by blockchain and smart contracts to the creator alone.