Windows与Linux共享文件
putty有自带的工具psftp.exe
- 在Windows cmd下执行
psftp linux用户名@Linux_IP
- 采用 put方法
put test.txt
如下所示:
编译Vim8.0源代码
编译
//解压缩
tar jxf vim-8.0.tar.bz2
//切换目录
cd /vim80/src
//配置
./configure
注意:在配置过程(检查依赖关系)可能会碰到下面的问题:
no terminal library found
checking for tgetent()… configure: error: NOT FOUND!
You need to install a terminal library; for example ncurses.
Or specify the name of the library with –with-tlib.
ncurses是一个比较老的库
解决方法:sudo apt install libncurses5-dev
//编译
make
//安装
make install
安装ncurses-5.6.tar.gz
//解压文件
tar zxvf ncurses-5.6.tar.gz
//配置
./configure --prefix=/usr/local --with-shared --without-debug
//编译
make
//安装
sudo make install