
Linux
lzx1104
这个作者很懒,什么都没留下…
展开
-
从U盘安装Ubuntu12.04双系统(win7)
http://www.ubuntu.com/download/desktop/install-desktop-long-term-supporthttp://www.ubuntu.com/download/desktop/create-a-usb-stick-on-windows1. 下载 ubuntu-12.04.2-desktop-amd64.iso 镜像。2. 下载并安装原创 2013-07-01 19:46:00 · 838 阅读 · 0 评论 -
linux 用户、用户组和文件权限
1. 用户 (user)1.1 用户类型管理员 root:具有所有权限的用户,UID的值为0.系统用户:保障系统运行的用户,一般不提供密码登录系统,其UID为1-499之间。普通用户:普通创建的用户,其使用系统的权限受限,UID为500~60000.1.2 用户操作与用户相关的配置文件主要有/etc/group和/etc/gshadow创建用户:userad原创 2015-11-12 13:02:11 · 581 阅读 · 0 评论 -
Unsupported major.minor version 51.0
java执行报错 “Exception in thread "main" java.lang.UnsupportedClassVersionError: xxx : Unsupported major.minor version 51.0”原因是java编译和运行使用的jdk版本不一致:$ whereis javajava: /usr/bin/java$ ll /usr原创 2013-06-14 17:35:22 · 1086 阅读 · 0 评论 -
Linux下unzip解压windows压缩的zip件,中文名乱码问题
参考 http://www.111cn.net/sys/linux/72590.htm方法1:unzip -O CP936 xxx.zip (GBK, GB18030)方法2:jar xvf file.name转载 2015-07-19 12:58:33 · 1746 阅读 · 0 评论 -
linux下配置库路径
linux下配置链接库路径方法:1. 在/etc/ld.so.conf下添加路径,保存并执行ldconfig2. LD_LIBRARY_PATH原创 2015-03-12 08:56:39 · 446 阅读 · 0 评论 -
linux suse、debain、ubuntu、fedora、centos各版本区别(二)
原文链接: http://klmodyssey.blog.sohu.com/195895722.htmlGentoo Gentoo最初由Daniel Robbins(前Stampede Linux和FreeBSD的开发者之一)创建。由于开发者对FreeBSD的熟识,所以Gentoo拥有媲美FreeBSD的广受美誉的ports系统 ——portage。(Ports和Portag转载 2014-12-06 17:24:20 · 2231 阅读 · 2 评论 -
linux redhat、suse、debain、ubuntu、fedora各版本区别(一)
原文链接:http://klmodyssey.blog.sohu.com/195895198.html想学Linux,但版本太多了,如Fedora、SuSE、Redhat、Ubuntu等,不免让人眼花缭乱,那么初学者该如何选择呢? 也许很多人会不屑的说,Linux不就是个操作系统么。错!Linux不是一个操作系统,严格来讲,Linux只是一个操作系统中的内核。内核是什么?内核转载 2014-12-06 17:21:57 · 13093 阅读 · 0 评论 -
Linux系统网络配置
网络配置查看网络MAC地址[root@centos ~]# cat/etc/udev/rules.d/70-persistent-net.rules 修改主机名称[root@centos ~]# vim /etc/sysconfig/networkNETWORKING=yesHOSTNAME=centos 修改网卡信息(设置主机IP等网络配置)[root@c原创 2014-12-09 11:29:12 · 719 阅读 · 0 评论 -
Linux中的用户和用户组管理
用户帐号文件:#more /etc/passwdroot:x:0:0:root:/root:/bin/bash帐号名称:密码:用户ID:组ID:描述信息:用户根目录:用户登录shell用户ID:0代表系统管理员。1-500系统预留的ID,500以上是普通用户使用。 用户帐号信息文件:#more /etc/shadowroot:$2y$05$uMMpY.q/zhS5g原创 2014-12-02 12:36:11 · 701 阅读 · 0 评论 -
Shell进程管理脚本
start_process(){ p_dir=$1 p_start_cmd=$2 p_name=$3 if [ ! -d $p_dir ]; then echo "process dir is not existed: $p_dir" return 1 fi echo "---- start -- $p_dir: $p_start_cmd" c原创 2014-12-02 08:39:58 · 743 阅读 · 0 评论 -
linux开启允许外网访问的端口
LINUX通过下面的命令可以开启允许对外访问的网络端口: /sbin/iptables -I INPUT -p tcp --dport 8000 -j ACCEPT #开启8000端口 /etc/rc.d/init.d/iptables save #保存配置 /etc/rc.d/init.d/iptables restart #重启服务转载 2014-11-25 15:32:27 · 2542 阅读 · 0 评论 -
Networking and Sockets (2)
Connectionless Socketspeer to peer DatagramsConnectionless communications uses datagrams, which are independent chunks of data containing a destination address.There's no attempt to keep datagra原创 2011-11-19 16:49:06 · 501 阅读 · 0 评论 -
Networking and Sockets (1)
Basic System calls For Connected Sockets#include int socket(int domain, int type, int protocol); // type SOCK_STREAM, SOCK_DAGRAMserverint bind(int socket_fd, const struct sockaddr* sa, so原创 2011-11-17 22:57:00 · 557 阅读 · 0 评论 -
Networking and Sockets (3)
The Domain Name System (DNS)#include #include /* Structure to contain information about address of a service provider. */struct addrinfo{ int ai_flags; /* Input flags. */原创 2011-11-19 05:36:28 · 443 阅读 · 0 评论 -
Linux下使用SSH远程登录时连接慢的问题
在Linux终端下使用SSH进行远程登录时,长时间才提示输入密码,很考验耐心,也耽误时间。ssh test@10.0.3.25ssh user@hostip user@hostip's password: 加参数 -vvv 会输出登录过程信息:ssh -vvv user@hostip可能会发现,在下面的地方等待超时:Cannot determin原创 2012-12-21 16:02:04 · 1412 阅读 · 0 评论 -
ubuntu双显示器设置
安装xrandr 查看显示器信息$ xrandr生成新模式行(分变率,频率)$ cvt 1680 1050 60创建新模式$ xrandr --newmode "1680x1050_60.00" 146.25 1680 1784 1960 2240 1050 1053 1059 1089 -hsync +vsync添加新模式$ xrandr -原创 2013-07-10 11:34:10 · 1371 阅读 · 0 评论 -
Linux垃圾回收站
(1) ~/.local/share/Trash(2) 外接硬(U)盘, win分区: .Trash目录原创 2013-05-14 17:00:05 · 2498 阅读 · 0 评论 -
catalina_out_rolling
#!/bin/bash# 50 23 * * * /path/to/this/shtoday=`date "+%Y-%m-%d"`logf=catalina.outfunction rolling_catalina(){ if [ ! -d $1 ]; then echo "Tomcat logs not existed: $1" return原创 2016-01-12 16:25:12 · 451 阅读 · 0 评论