logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

linux获取系统时间

1.时间表示在程序当中,我们经常要输出系统当前的时间,比如我们使用date命令的输出结果。这个时候我们可以使用下面两个函数time_t time(time_t *tloc);                    //时间精度为秒char *ctime(const time_t *clock);            //将秒数转化为字符串time函数返回从1970年1月1日0

#linux
Linux NFS 使用总结

1.      服务器nfs的配置2.      客户端nfs的配置3.      使用nfs3.1作为共享文件系统mount3.2作为根文件系统mount4.备注nfs是NetworkFile System,基于RPC(Remote Procedure Call Protocol远程过程调用协议)实现。1.服务器nfs的配置1.1start

#linux
批处理FTP上传文件到服务器

实例本机为Windows,服务器为Linux且其用户名为root,密码为1111。创建一个test.bat文件和一个128.txt文件。需要传的文件test(二进制bin文件)放在相同目录下,双击test.bat则可以自动FTP上传文件到服务器。 test.bat内容为:ftp -s:128.txt 128.txt内容为:open 128.0.0.28rootr

#服务器#windows#linux
到底了