1、在命令行输入用户名密码即可登录系统,进行各种 *** 作。
2、运行putty,在Host Name(or IP address)输入目标主机的IP地址,点击Open即可连接。
3、如果觉得默认的字体不好看,还可以对字宴搜体进行各种设置。(Window->Appearance->Font settings)。
扩展资料
常用选项
1、-q: 安静模式,传输过程中不显示任何信猜指息。
2、-r: 传输目录。
3、-P port: 指定SSH端口,默认是22。
4、-l user: 指定哪个用户登录远程主机进行传输,可以与主机地址写在一起,如 pharen@192.168.0.109。
5、-pw passw: 指定登录时的用户密码。
6、-C: 允许压缩晌兆历。
1) 下载最新的源码包(fuse-2.8.3.tar.gz),解压“tar xvf fuse-2.8.3.tar.gz”,进入目录“cd fuse-2.8.3”;穗羡 2) 按部就班地首先“./configure”,然后“make”,接着“make install”,最后“modprobe fuse”加载内猜早拍核模块fuse.ko;
3) 切换到example目录下“cd example”,编译fusexmp.c测试一下是否安装成功:
[root@localhost example]# gcc -Wall `pkg-config fuse --cflags --libs` fusexmp.c -o fusexmp
Package fuse was not found in the pkg-config search path.
Perhaps you should add the directory containing `fuse.pc'睁雹
to the PKG_CONFIG_PATH environment variable
No package 'fuse' found
在包含自 /usr/local/include/fuse/fuse.h:26 的文件中,
从 /usr/local/include/fuse.h:9,
从 fusexmp.c:22:
/usr/local/include/fuse/fuse_common.h:32:2: 错误:#error Please add -D_FILE_OFFSET_BITS=64 to your compile flags!
根据提示信息,我们重新加入参数重新编译:
[root@localhost example]# gcc -Wall `pkg-config fuse --cflags --libs` -D_FILE_OFFSET_BITS=64 fusexmp.c -o fusexmp
Package fuse was not found in the pkg-config search path.
Perhaps you should add the directory containing `fuse.pc'
to the PKG_CONFIG_PATH environment variable
No package 'fuse' found
/tmp/ccKPr0PM.o: In function `main':
fusexmp.c:(.text+0x726): undefined reference to `fuse_main_real'
collect2: ld 返回 1
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)