Linux管理
趣趣
没有简介
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Git:代码冲突常见解决方法
如果系统中有一些配置文件在服务器上做了配置修改,然后后续开发又新添加一些配置项的时候,在发布这个配置文件的时候,会发生代码冲突:error: Your local changes to the following files would be overwritten by merge: protected/config/main.phpPlease, commit...原创 2014-07-16 17:08:23 · 115 阅读 · 0 评论 -
Install Subversion 1.8.9 ( SVN Client ) on CentOS/RHEL
Install Subversion 1.8.9 ( SVN Client ) on CentOS/RHELRahul June 1, 2014 Linux Tutorials, Opensource No commentsShare this:Thanks to Wandisco, which is maintaining the rpm packages for latest...原创 2014-07-23 11:06:56 · 164 阅读 · 0 评论 -
svn msyql自定义权限管理
基本思路:1.使用apache的svn扩展模块,这样可以使用http协议访问svn2.在apache前端做http代理,在代理层做用户的权限校验安装apache,svn,mysql[code="java"]yum install httpd mysql-server mod_auth_mysql subversion mod_dav_svn[/code]初始化mysql:...原创 2014-08-29 16:19:40 · 171 阅读 · 0 评论 -
linux忽略目录查找
根据文件属性查找:find . -type f -name "*config*" ! -path "./tmp/*" ! -path "./scripts/*" ! -path "./node_modules/*"Explanation:find . - Start find from current working directory (recursively by defaul...原创 2014-06-28 12:15:25 · 116 阅读 · 0 评论 -
java 服务器不能处理图片
Java在图形处理时调用了本地的图形处理库。在利用Java作图形处理(比如:图片缩放,图片签名,生成报表)时,如果运行在windows上不会出问题。如果将程序移植到Linux/Unix上的时候有可能出现图形不能显示的错误。 提示信息:"Can't connect to X11 window server"这是由于Linux的图形处理需要一个X Server服务器。 解决办法...原创 2013-03-23 18:54:12 · 133 阅读 · 0 评论 -
mysql 重置密码
shell> /etc/init.d/mysql stopshell> mysqld_safe --skip-grant-tables &shell>mysqlUPDATE mysql.user SET Password=PASSWORD('...') WHERE User='...' AND Host= '...';FLUSH PRIVILEGES;shell> /etc/i...原创 2013-04-03 16:48:06 · 100 阅读 · 0 评论 -
linux 禁用触摸板
install xinputxinput list⎡ Virtual core pointer id=2 [master pointer (3)]⎜ ↳ Virtual core XTEST pointer id=4 [slave pointer (2)]⎜ ↳ USB Optical Mouse ...原创 2013-04-05 11:16:49 · 126 阅读 · 0 评论
分享