-
linux下c的网络编程---转载
所属栏目:[Linux] 日期:2021-01-26 热度:99
1.tcp协议 2. udp协议 3.并发编程[详细]
-
IP Failover Setup using Keepalived on CentOS/Redhat 6
所属栏目:[Linux] 日期:2021-01-26 热度:106
source url: Keepalived ?is used for IP failover between two servers. It facilities for?load balancing?and high-availability to Linux based infrastructures. It works on VRRP ( Virtual Router Redundancy Protocol ) protocol. We have running[详细]
-
Linux的一些命令
所属栏目:[Linux] 日期:2021-01-26 热度:188
程序 # rpm -qa??????????????? # 查看所有安装的软件包 系统 # uname -a?????????????? # 查看内核/操作系统/CPU信息 # head -n 1 /etc/issue?? # 查看操作系统版本 # cat /proc/cpuinfo????? # 查看CPU信息 # hostname?????????????? # 查看计算机名 # lsp[详细]
-
火狐浏览器修改userAgent
所属栏目:[Linux] 日期:2021-01-26 热度:155
火狐浏览器修改userAgent的办法: 在火狐浏览器地址栏输入“about:config”,按下回车进入设置菜单。找到“general.useragent.override”,如果没有这一项,则点右键“新建”->“字符串”,输入这个字符串。将其值设为自己想要的UserAgent[详细]
-
Install Redis on CentOS 6.4--转
所属栏目:[Linux] 日期:2021-01-26 热度:84
h4 class="post_title"a href="http://thoughts.z-dev.org/2013/05/27/install-redis-on-centos-6-4/"gt;Install Redis on CentOS 6.4 source:http://thoughts.z-dev.org/2013/05/27/install-redis-on-centos-6-4/ We’re provisioning production machines[详细]
-
Linux df du 命令
所属栏目:[Linux] 日期:2021-01-26 热度:86
查看系统的分区使用情况,并显示文件系统的类型 : $ -hT 查看某个目录所在分区的磁盘使用情况 : $ -h nodedemo/ 输出文件系统的 inodes 信息 : $ -ih $ -hs $ -hs nodedemo/ -hs nodedemo/Dockerfile $ -hs . $ $[详细]
-
Linux ip forward
所属栏目:[Linux] 日期:2021-01-26 热度:169
. . $ systemctl restart networking . . auto ens39 iface ens39 inet static address span style="color: #800080"192.168 .span style="color: #800080"2.254 span style="color: #000000" netmask span style="color: #800080"255.255 .span style="colo[详细]
-
Linux mount 命令进阶
所属栏目:[Linux] 日期:2021-01-26 热度:174
可以将任何一个挂载点、普通目录或者文件挂载到其它的地方。 $ -p bind/bind1/ -p bind/bind2/ --bind ./bind/bind1 ./bind/bind2 $ /var/log /opt/ /var/ --bind /opt/var_log /var/log $ -o bind,ro ./bind/bind1 ./bind/ ./bind/bind2/sub1/abc $ aaa >[详细]
-
Linux mount 命令
所属栏目:[Linux] 日期:2021-01-26 热度:150
device :指定要挂载的设备,比如磁盘、光驱等。 dir :指定把文件系统挂载到哪个目录。 type :指定挂载的文件系统类型,一般不用指定,mount 命令能够自行判断。 options :指定挂载参数,比如 ro 表示以只读方式挂载文件系统。 $ -h $ /proc/filesystems[详细]
-
linux ss 命令
所属栏目:[Linux] 日期:2021-01-26 热度:58
ss 是 Socket Statistics 的缩写 。ss 命令可以用来获取 socket 统计信息,它显示的内容和 netstat 类似。但 ss 的优势在于它能够显示更多更详细的有关 TCP 和连接状态的信息,而且比 netstat 更快。当服务器的 socket 连接数量变得非常大时,无论是使用 net[详细]
-
Linux 内核空间与用户空间
所属栏目:[Linux] 日期:2021-01-25 热度:149
系统调用、软中断和硬件中断。这三种方式每一种都涉及到大量的操作系统知识,所以这里不做展开。 内核空间 -> 用户空间。如下图所示(此图来自互联网):[详细]
-
linux free 命令
所属栏目:[Linux] 日期:2021-01-25 热度:50
$ -h -s Mem 行(第二行)是内存的使用情况。 Swap 行(第三行)是交换空间的使用情况。 total 列显示系统总的可用物理内存和交换空间大[详细]
-
linux dig 命令
所属栏目:[Linux] 日期:2021-01-25 热度:61
$ dig baidu.com /tr tr tdspan style="font-family: Microsoft YaHei; font-size: 15px"A /td tdspan style="font-family: Microsoft YaHei; font-size: 15px"地址记录,用来指定域名的 IPv4 地址,如果需要将域名指向一个 IP 地址,就需要添加 A 记录。 /t[详细]
-
Ubuntu 中登录相关的日志
所属栏目:[Linux] 日期:2021-01-25 热度:60
$ nick@myserver $ vim /var/log/auth.log $ -f /var/log/btmp $ $ -f /var/log/wtmp. $ reboot $[详细]
-
linux sed 命令
所属栏目:[Linux] 日期:2021-01-25 热度:51
aabbcc Hello world! Hello Jack!Hello China!Hello Nick! $ test.txt # 删除第二行到最后一行 选项 -i $ -i '1d' test.txt $ test.txt # 在第一行下面新增一行,内容为 test.txt # 在最后一行下面新增一行,内容为 , test.txt # 一次增加多行需要使用换行符[详细]
-
linux kill 命令
所属栏目:[Linux] 日期:2021-01-25 热度:197
[options] span style="color: #000000" […] : 把信号发送给列出的所有进程。 options : - span style="color: #000000" : 指定发送给进程的信号,指定信号的名称或号码都可以。 /span-l : 列出所有信号的名称和号码。/pre $ -l /tr tr tdspan style="font-[详细]
-
TeamCity : 安装 Agent
所属栏目:[Linux] 日期:2021-01-25 热度:138
$ $ $ buildAgent.dist.properties buildAgent.properties name=tcagent1 $ cd /var/local/ -R tcuser:tcuser buildagent/ $ #!/bin/ = span style="color: #0000ff"case span style="color: #800000"" span style="color: #800000"$1 span style="color: #8[详细]
-
TeamCity : 安装 Server
所属栏目:[Linux] 日期:2021-01-25 热度:158
$ -xf TeamCity- . . .gz -C ~/ $ ./teamcity-server. start #!/bin/ /etc/init.d/teamcity - startup script =/usr/lib/jdk1. =${JAVA_HOME}/ =.:${JAVA_HOME}/lib:${JRE_HOME}/ =${JAVA_HOME}/ = =-Djava.awt.headless= $ -stop-daemon --start -c tcuser[详细]
-
Ubuntu14.04安装postgresql9.4
所属栏目:[Linux] 日期:2021-01-25 热度:172
安装前的检查 首先查看是否已经安装了旧版本: dpkg -l | postgresql 如果已经安装了某个版本的postgresql,请先卸载。 安装postgresql 添加postgresql源: /etc/apt/sources.list.d/ vim /etc/apt/sources.list.d/pgdb.list 把下面这行数据添加到pgdb.list[详细]
-
linux 定时任务
所属栏目:[Linux] 日期:2021-01-25 热度:76
p style="margin: 0in; font-size: 11.0pt;" lang="zh-CN"span style="font-family: 'Microsoft YaHei'; font-size: 15px;"习惯了使用span style="font-family: Calibri;" windows span style="font-family: 'Microsoft YaHei';"的计划任务,span style="fon[详细]
-
Linux 2.4调度系统分析--转
所属栏目:[Linux] 日期:2021-01-24 热度:98
简介: ?本文详尽地分析了Linux 2.4内核中调度系统的工作原理,特别是i386体系结构下SMP系统的调度表现。通过对2.4调度系统实现原理及其细节的分析,文章在文末指出了2.4调度系统在功能上、实时性上以及多处理机系统表现上存在的不足,为后继的2.6系统的分析[详细]
-
10+ commonly using find command switches with example Unix/L
所属栏目:[Linux] 日期:2021-01-24 热度:58
http://crybit.com/find-command-usage-with-example-unixlinux/ find command is one of the best search tool under UNIX/LINUX. Here I’m discussing some common switches of find command with detailed example. Like the name find,the “find” com[详细]
-
Anatomy of the Linux kernel--转
所属栏目:[Linux] 日期:2021-01-24 热度:79
ref:http://www.ibm.com/developerworks/linux/library/l-linux-kernel/?S_TACT=105AGX52S_CMP=cn-a-l Given that the goal of this article is to introduce you to the Linux kernel and explore its architecture and major components,let's start with[详细]
-
DNS服务器全面解析--转
所属栏目:[Linux] 日期:2021-01-24 热度:99
引用地址:http://pangge.blog.51cto.com/6013757/1273087 基础认知篇 DNS 服务的概述 DNS 是Domain Name System 的缩写,即域名系统。DNS服务主要功能是将域名转换为相应的IP地址,提供DNS服务的系统就是DNS服务器。形如它能够把www.baidu.com这样的域名转[详细]
-
Linux / Unix Command: bunzip2--reference
所属栏目:[Linux] 日期:2021-01-24 热度:117
http://linux.about.com/library/cmd/blcmdl1_bunzip2.htm NAME bzip2,bunzip2 - a block-sorting file compressor,v1.0.2? bzcat - decompresses files to stdout? bzip2recover - recovers data from damaged bzip2 files ? SYNOPSIS bzip2 ?[ ?-cdfkqstvz[详细]