`
sundful
  • 浏览: 1253740 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论
文章列表

Ubuntu 修改locale

vim /etc/default/locLANG="en_US.UTF-8" LANG="en_US.UTF-8" #修改为zh_CN.UTF-8" . /etc/default/locale
配置/etc/profile 最后一行加上   # ulimit -SHn 65536 # . /etc/profile     重启,ulimit -n 验证,显示40960就没问题了

crontab ubuntu

第一次使用crontab 时,会出现 no crontab for root - using an empty one    “Select a editor ......”下面有几个选项,就是叫你选择编辑器。(选vim)就可以了,我选的第三个。   但是如果你选错了,就可能会遇到点麻烦,没有办法正常编辑,crontab -e。 怎么办?   执行这个命令:select-editor  (针对crontab的一个命令), 可以让你重新选一次。 设置crontab时,可能会操作的东东 设置默认编辑模式 vim /etc/profile     增加EXPORT EDITOR=v ...
 tar zcvf fd.tar.gz * --exclude=file1 --exclude=dir1 注意: 1、--exclude=file1 而不是 --exclude file1 2、要排除一个目录是--exclude=dir1而不是--exclude=dir1/ 也可以在父目录打包 tar zcvf fd.tar.gz pardir --exclude=pardir/file1 --exclude=pardir/dir1 3、打包如何排除所有扩展名为 apk的文件 tar --exclude "*.apk"  -zcvf 102.tar.gz 1 ...
1. 修改 root 密码 #如果无法修改密码需要执行以下命令 sudo mount -rw -o remount / sudo passwd root 2. 以其他账户登录,通过 sudo nano 修改 /etc/ssh/sshd_config : xxx@ubuntu14:~$ su - root Password: root@ubuntu14:~# vi /etc/ssh/sshd_config 3. 注释掉 #PermitRootLogin without-password,添加 PermitRootLogin ye # Authentication: ...
While installing Jenkins 1.486 on Ubuntu 12.10 server (64bit) with Java 7u9 I had two issues with libXrender.so.1 and libXtst.so.6 when running the first Maven build. I solved them and this post contains the solution. At first Maven failed with the following message: Caused by: java.lang.Unsatisfi ...

Ubuntu下安装nginx

1)、下载   sudo wget http://nginx.org/download/nginx-1.2.2.tar.gz 2)、解压   sudo  tar -xzvf nginx-1.2.2.tar.gz 3)、进入相关目录进行以下操作 ./configure make sudo make install   如果你运气好的话,一切ok,不过...........哈哈。Ubuntu默认的策略是什么库都不装,依赖的库都需要自已手工安装搞定。 一般都会出错的,那么我们来看看可能出现的问题。
       经gzip压缩后页面大小可以变为原来的30%甚至更小,因此很多网站使用gzip压缩以降低网站带宽消耗,同时提升访问速度,使访问者拥有更好的用户体验。 gzip(GNU-ZIP)是一种压缩技术。经gzip压缩后的页面大小可以变为原来的30%甚至更小,因此很多网站使用gzip压缩以降低网站带宽消耗,同时提升访问速度,使访问者拥有更好的用户体验。gzip的压缩页面需要浏览器和服务器双方都支持,实际上就是服务器端压缩,传到浏览器后浏览器解压并解析。目前绝大多数浏览器都支持解析gzip压缩过的页面。 Nginx的压缩输出由一组gzip压缩指令来实现。相关指令位于http{….}两个大括 ...
Linux批量重命名文件会涉及到改变一个字母、改变一些相连字母、改变某些位置的字母、在最前面加上某些字母、或者改变字母的大小写。完成这里五个方法基本上就会解决了Linux批量重命名的工作。 1、我想把它们的名字的第一个1个字母变为"q",其它的不变 [root@pps mailqueue]# for i in `ls`; do mv -f $i `echo $i | sed 's/^./q/'`; done      2、修改前面5个字母为zhaozh    [root@pps mailqueue]# for i in `ls`; do mv -f $i `echo ...

Map遍历的两种方式

    博客分类:
  • Java
第一种:  Map map = new HashMap(); Iterator iter = map.entrySet().iterator(); while (iter.hasNext()) { Map.Entry entry = (Map.Entry) iter.next(); Object key = entry.getKey(); Object val = entry.getValue(); }  效率高,以后一定要使用此种方式! 第二种:  Map map = new HashMap(); Iterator iter = ...
一.理论准备         Map是键值对的集合接口,它的实现类主要包括:HashMap,TreeMap,Hashtable以及LinkedHashMap等。         TreeMap:基于红黑树(Red-Black tree)的 NavigableMap 实现,该映射根据其键的自然顺序进行排序,或者根据创建映射时提供的 Comparator 进行排序,具体取决于使用的构造方法。         HashMap的值是没有顺序的,它是按照key的HashCode来实现的,对于这个无序的HashMap我们要怎么来实现排序呢?参照TreeMap的value排序。         M ...

linux 解压war包

网上很多人说用jar包解压,但jar命令解压时不能指定目录,推荐使用unzip解压war包。 unzip -d 指定目录 [root@oracle upload]# unzip -oq common.war -d common     命令名: unzip 功 能说明:解压缩zip文 件 语  法:unzip [-cflptuvz][-agCjLMnoqsV ...
maven下面编译失败,失败提示信息为:程序包com.sun.image.codec.jpeg不存在 这个类文件的位置在jre/lib/rt.jar 而我们设置的java_home下面的lib/dt.jar中没有这个文件,导致编译失败。通过配置maven-compiler-plugin插件可以解决此问题。  <!-- 编译插件 --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</arti ...
在当前的一个项目中,遇到以下业务需要: 1.开发环境是在myeclipse里运行的时候,启动服务后,有一个加载配置文件属性信息的Global.java。用于得到配置文件里的配置信息; 2.发布系统的时候,需要把系统打成jar执行,这时候 ...
[root@rd-1 yum.repos.d]# scp CentOS-Base.repo 192.168.1.202:/etc/yum.repos.d/Address 192.168.3.202 maps to bogon, but this does not map back to the address - POSSIBLE BREAK-IN ATTEMPT!解决方法:vim /etc/ssh/ssh_config修改GSSAPIAuthentication  值为 no
Global site tag (gtag.js) - Google Analytics