linux环境,Linux程序设计,学习笔记...
分类:
系统相关 时间:
2014-05-05 21:21:41
阅读次数:
503
使用jquery-file-upload,可以通过js来上传多个文件,并且支持端电脑续传。
使用jqplay可以播放MP4、MP3等视频和音频文件,速度快,支持linux、windows等系统和各种浏览器。...
分类:
其他好文 时间:
2014-05-03 17:30:50
阅读次数:
337
ubuntu 下安装source insight...
分类:
其他好文 时间:
2014-05-03 17:19:19
阅读次数:
440
1root口令丢失解决办法重启系统,再启动时任意键进入grub菜单,然后根据提示按e键进入编辑状态。
分类:
系统相关 时间:
2014-05-03 15:04:02
阅读次数:
324
1.挂载光盘镜像2.配置yum文件Vim/etc/yum.repos.d/rhel-source.repo3.安装vsftpdYuminstallvsftpd4.主文件/etc/vsftpd/vsftpd.conf配置5.建立虚拟用户口令库文件login.txt6.生成vsftp的认证文件使用db_load命令生成认证文件,“-f”命令选项设置的值是虚拟用户的口令库文件,即..
分类:
系统相关 时间:
2014-05-03 14:55:33
阅读次数:
464
#!/bin/bash#thisscriptisonlyforCentOS6#checktheOSplatform=`uname-i`if[$platform!="x86_64"];thenecho"thisscriptisonlyfor64bitOperatingSystem!"exit1fiecho"theplatformisok"version=`lsb_release-r|awk‘{printsubstr($2,1,1)}‘`if[$version!=6];thenecho"thisscriptiso..
分类:
系统相关 时间:
2014-05-03 14:51:00
阅读次数:
415
Linux服务器限制ssh登录,查看登录日志1.查看端口占用情况$sudosu
#lsof-i:<NUM>
netstat-apn|grep<NUM>2.修改默认端口号22/etc/ssh/sshd_configPort22最好先添加一个端口号,然后启用成功之后再关闭端口22。然后重启sshd:sudo/etc/init.d/sshrestart没有反应,使..
分类:
其他好文 时间:
2014-05-03 14:43:53
阅读次数:
403
1.安装samba包。2.开启samba/etc/init.d/smbstart#启动Samba服务器/etc/init.d/smbstop#关闭Samba服务器/etc/init.d/smbstatus#查看服务器状态在RedHatEnterpriseLinux下,输入:smbclient-L//localhost查看共享的文件等信息3.配置/etc/samba/smb.com写入要共享的目录及用户访问..
分类:
系统相关 时间:
2014-05-03 14:43:14
阅读次数:
581
linux源码升级内核当前环境:[root@localhost~]#uname-r
2.6.18-348.el5配置流程:1、准备yum库安装g++gcc[root@localhost~]#cat/etc/yum.repos.d/rh_5.9.repo
[rhel-server]
name=Redserver
baseurl=file:///misc/cd/Server
enabled=1
gpgcheck=0
gpgkey=file:///etc/pki/rpm-..
分类:
系统相关 时间:
2014-05-03 14:40:08
阅读次数:
500
一、grep的用法:grep:goloballysearchforaregularexpressionandprinttheresults1,作用:Linux中grep的功能就是进行字符串数据的对比,然后将符合用户需求的字符串打印出来。2,格式:grep[options]3,常见参数:.:任意单个字符;*:紧挨在其前面的字符任意次,可以为0;^:锚定..
分类:
其他好文 时间:
2014-05-03 14:39:22
阅读次数:
306