摘要:笔记本是双显卡 intel+navida 刚开始时 sudo ubuntu-drivers autoinstall 装好驱动,外置显示器显示正常,后来重启后死活不显示 查了一天的资料,终于找到答案了 https://askubuntu.com/a/1134579 原因是切换过 intel 显卡,变成
阅读全文
摘要:登录阿里云获取加速器地址 https://cr.console.aliyun.com/cn-hangzhou/instances/mirrors 创建配置文件 sudo mkdir -p /etc/docker sudo tee /etc/docker/daemon.json <<-'EOF' {
阅读全文
摘要:```shell
sudo gedit /etc/rc.local echo " "|sudo modprobe -r ideapad_laptop
```
阅读全文
摘要:```shell
sudo apt-get install libgtest-dev
cd /usr/src/gtest
#没有安装Cmake的请先安装cmake
sudo mkdir build cd build
sudo cmake .. #一定要以sudo的方式运行,否则没有写入权限
sudo make #这个也一样要以sudo的方式
sudo cp libgtest*.a /...
阅读全文
摘要:每次重装系统都要重新编译,太耗时间了。 将编译好的pcl 安装到自己的home 下,这样每次重装系统就可以不用重新编译了,好了很多。
阅读全文
摘要:```c++ include include include std::mutex coutMutex; int main(){ std::thread t([]{ std::cout lockGuard(coutMutex); std::cout lockGuard(coutMutex); std
阅读全文
摘要:```shell
sudo apt-get install terminator ```
```shell
sudo gedit ~/.config/terminator/config
```
```shell
[global_config]
[keybindings]
[profiles] [[default]] use_system_font = False # 是否启用系统...
阅读全文