
环境配置
liucheng8
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
ubunut安装tftp服务
安装软件apt-get install tftp-hpa tftpd-hpa xinetd修改配置vi /etc/default/tftpd-hpaTFTP_USERNAME="tftp"TFTP_DIRECTORY="/root/tftpboot"TFTP_ADDRESS=":69"TFTP_OPTIONS="--secure -c"重启服务service tftpd-hp...原创 2019-04-01 19:08:45 · 179 阅读 · 0 评论 -
ubunut16 安装 samb
ubunut16 安装 samb安装samb$ sudo apt-get install samba修改配置文件修改/etc/samba/smb.conf 文件[work]comment = for good workpath = /home/lc/workbrowseable = yeswritable = yesguest ok = yespublic = yes...原创 2019-03-28 16:11:35 · 228 阅读 · 0 评论 -
Ubuntu 16.04安装配置NFS
参考学习:https://www.jianshu.com/p/5314f90330a6安装nfs服务$ sudo apt-get update$ sudo apt-get install -y nfs-kernel-server配置nfs服务sudo vi /etc/exports/home/lc/work *(rw,sync,no_root_squash,no_subtree_c...原创 2019-03-28 17:24:01 · 856 阅读 · 0 评论 -
没有那个文件或目录
Ubunut16 支持32程序运行:报错:lc@PC:~$ /opt/hisi-linux/x86-arm/gcc-arm-none-eabi-4_9-2015q3/bin/arm-none-eabi-gcc -v-bash: /opt/hisi-linux/x86-arm/gcc-arm-none-eabi-4_9-2015q3/bin/arm-none-eabi-gcc: 没有那个文件或...原创 2019-03-28 18:02:08 · 4520 阅读 · 0 评论 -
vim配置
安装cscopesudo apt-get install cscope修改 ~/.vimrc 文件set encoding=utf-8set termencoding=utf-8set fileencodings=utf-8,gbk,latin1set fileencoding=utf-8set numbernmap <F12> :source ~/.vimrc&l...原创 2019-03-28 22:49:22 · 159 阅读 · 0 评论 -
github Please make sure you have the correct access rights
问题lc@m:~/ww$ git clone [email protected]:lc168/llvm-project.git正克隆到 'llvm-project'...Permission denied (publickey).fatal: Could not read from remote repository.Please make sure you have the correct...原创 2019-04-16 10:30:04 · 1132 阅读 · 0 评论 -
ubuntu16安装ssh
1. 安装ssh server 和 安装ssh clientsudo apt-get install openssh-serversudo apt-get install openssh-client2. 检查SSH是否安装成功ps -e | grep ssh*原创 2019-04-25 19:28:45 · 924 阅读 · 1 评论