
ubuntu
橘长_
攻城狮
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
ssh终端登录后未自动执行.bashrc
【代码】ssh终端登录后未自动执行.bashrc。原创 2024-06-16 16:34:13 · 210 阅读 · 0 评论 -
ubuntu18配置ftp
安装ftp修改文件sudo gedit /etc/vsftpd.conf# Example config file /etc/vsftpd.conf## The default compiled in settings are fairly paranoid. This sample file# loosens things up a bit, to make the ftp daemon more usable.# Please see vsftpd.conf.5 for all com原创 2021-09-16 21:01:36 · 363 阅读 · 1 评论 -
could not open port /dev/ttyUSB0
方法一:改变权限sudo chmod 777 /dev/ttyUSB0方法二:ttyUSB0 在用户组 dialout把用户添加过去ubuntu@ubuntu-vpc:~$ ls -l /dev/ttyUSB0 crw-rw---- 1 root dialout 188, 0 9月 5 15:11 /dev/ttyUSB0ubuntu@ubuntu-vpc:~$ whoamiubuntuubuntu@ubuntu-vpc:~$ sudo usermod -aG dialout ub原创 2021-09-05 15:17:29 · 4849 阅读 · 0 评论 -
Command “python setup.py egg_info“ failed with error code 1 in /tmp/pip-build-ko6gqpky/cryptography/
解决方法是更新 setuptools 和 pip:pip install --upgrade setuptoolspython -m pip install --upgrade pip原创 2021-09-05 01:25:10 · 1151 阅读 · 0 评论 -
esp8266编译环境搭建踩坑
make menuconfig按照github上的wikihttps://github.com/espressif/ESP8266_RTOS_SDK走到这一步:问题一:ubuntu@ubuntu-vpc:~/esp_tools/ESP8266_RTOS_SDK/examples/get-started/hello_world$ make menuconfig make[1]: 进入目录“/home/ubuntu/esp_tools/ESP8266_RTOS_SDK/tools/kconfig”原创 2021-09-05 01:24:18 · 1352 阅读 · 0 评论 -
创建python软连接执行python3
删除usr/bin/目录下的默认pythonsudo rm /usr/bin/python再设置软连接让python命令指向python3.6sudo ln -s /usr/bin/python3.6 /usr/bin/python原创 2021-09-05 01:09:10 · 4999 阅读 · 0 评论 -
ubuntu18 安装nodejs v14 hpm
ubuntu18云服务器安装hpm1.安装gn, ninja, riscv32-linux-gcc2.安装hpm#====================================================================================================#============================================================================================原创 2021-01-17 20:25:12 · 1250 阅读 · 1 评论 -
ubuntu18安装nodered
ubuntu18安装node redmkdir downloadcd download# 安装nodejswget https://nodejs.org/dist/v9.9.0/node-v9.9.0-linux-x64.tar.xztar xvJf node-v9.9.0-linux-x64.tar.xzsudo mv node-v9.9.0-linux-x64 /usr/local/node-v9sudo ln -s /usr/local/node-v9/bin/node /bin/n原创 2021-01-17 20:21:42 · 926 阅读 · 0 评论 -
VMware: vmw_ioctl_command error 无效的参数
虚拟机打开rviz或这gazebo报错:VMware: vmw_ioctl_command error 无效的参数解决办法:export SVGA_VGPU10=0或者echo "export SVGA_VGPU10=0" >> ~/.bashrc原创 2020-08-30 17:10:54 · 2276 阅读 · 1 评论 -
使用FileZilla与ubuntu传输文件
环境:ubuntu141 安装sudo apt-get install openssh-server检查安装是否成功sudo service ssh restart2 打开FileZilla输入 IP地址 用户名 登入密码 端口不填原创 2020-08-25 17:59:27 · 4189 阅读 · 3 评论 -
svn在Ubuntu下安装使用
系统ubuntu14安装svn:juzhango@juzhango-vpc:~$ svn --version程序“svn”尚未安装。 您可以使用以下命令安装:sudo apt-get install subversionjuzhango@juzhango-vpc:~$ sudo apt-get install subversion安装完成:juzhango@juzhango-vpc:~$ svn --versionsvn,版本 1.8.8 (r1568071) 编译于 Aug 10原创 2020-08-21 14:47:24 · 314 阅读 · 0 评论 -
ubuntu 安装java环境
sudo apt-get install openjdk-7-jdk原创 2020-08-18 16:43:56 · 112 阅读 · 0 评论 -
Clion在Ubuntu 18下安装
1sudo apt-get updatesudo apt-get install build-essentialsudo apt-get install cmakesudo apt-get install bisonsudo apt-get install library*sudo apt-get install libncurses5-devsudo apt-get install g++sudo apt-get install kdelibs5-devsudo apt-get inst原创 2020-08-16 17:32:04 · 689 阅读 · 0 评论 -
ubuntu18安装ros-melodic
记录Ubuntu18安装ros系统一、换阿里源换阿里源链接二、配置软件和更新设置为了能顺利更新这里我电脑连接手机开的网络热点三、开始安装参考wiki进行安装ros安装官网注意这里安装过程全程用手机热点Setup your sources.list sudo sh -c 'echo "deb http://packages.ros.org/ros/ubuntu $(lsb_...原创 2020-02-24 17:44:29 · 610 阅读 · 0 评论 -
ubuntu 18换阿里云源
cd /etc/aptsudo cp sources.list sources.list.backupsudo gedit sources.listdeb http://mirrors.aliyun.com/ubuntu/ bionic main restricted universe multiversedeb-src http://mirrors.aliyun.com/ubuntu/...原创 2020-02-15 17:49:11 · 351 阅读 · 0 评论 -
ubuntu18.4 安装谷歌浏览器
这几天换了固态硬盘重装了Ubuntu系统,这里写个笔记,免得下次又找不到怎么安装。sudo wget http://www.linuxidc.com/files/repo/google-chrome.list -P /etc/apt/sources.list.d/wget -q -O - https://dl.google.com/linux/linux_signing_key.pub |...原创 2020-02-05 13:18:05 · 553 阅读 · 2 评论