`

linux tips

阅读更多

启动Memcache的服务器端:
/usr/local/bin/memcached -d -u root

 

设置vsftpd上传根路径

local_root=/home/lich/upload

 

 

设置 dns 

vi /etc/resolv.conf 

 

nameserver 202.96.209.5
nameserver 202.96.199.132
nameserver 202.96.199.133

 

/etc/init.d/networking restart

 

 

编译安装mysql 改变安装路径 数据路径

./configure --prefix=/usr/local/mysql --localstatedir=/usr/local/mysql/data

make

make install

 

 

改变源

vi /etc/apt/sources.list

apt-get update

 

 

端口使用 情况  netstat -lnp --ip

netstat -utdlp

 

ifconfig   //ip

inittab  //modify init level

startx   图形界面

rm -r -f  remove

mkdir    make directory

rmdir   remove

ls -l

touch  创建


mv    move  rename

cp  copy   -r


find  /etc -name inittab

whereis   java


echo $PATH


ln 3.txt 4  联结  -s


useradd lich

passwd lich

groupadd testuser

usermod  -g testuser lich


su lich  //switch user

chmod +x filename// chmod u+x   chmod g+x  chmod o+x

chown   //change file owner and group

wc  //word count

grep keyword filename


ctrl+c   //cancel job

lssss 2>cmd.txt  错误输出

service vsftpd start



vsftpd

vsftpd.conf  
                 anon_root=/  //access to all directory

allow root access       delete root in vsftp.user_list  vsftpd.user

[root@localhost etc]# vi vsftpd.ftpusers
[root@localhost etc]# vi vsftpd.user_list
[root@localhost etc]# vi vsftpd.user_list


vsftpd auto start 
  1.  vi /etc/rc.local  add   /usr/sbin/vsftpd 
  2.   chkconfig vsftpd on


apache  decompress

gzip -d apache-tomcat.gz
tar -xvf apr.tar

/etc/rc.local
/etc/profile


JAVA_HOME=/usr/java/jdk1.6.0_03
export JAVA_HOME

service iptables stop

rpm -qa   //all install package
rpm -e  --nodeps  //uninstall
rpm -ivh

 

 

wget http://blog.s135.com/soft/linux/webbench/webbench-1.5.tar.gz
tar zxvf webbench-1.5.tar.gz
cd webbench-1.5
make && make install


  3、使用:

引用
webbench -c 500 -t 30 http://127.0.0.1/test.jpg

   参数说明:-c表示并发数,-t表示时间(秒)

  4、测试结果示例:

引用
Webbench - Simple Web Benchmark 1.5
Copyright (c) Radim Kolar 1997-2004, GPL Open Source Software.

Benchmarking: GET http://127.0.0.1/test.jpg
500 clients, running 30 sec.

Speed=3230 pages/min, 11614212 bytes/sec.
Requests: 1615 susceed, 0 failed.


一、使用命令设置ubuntu的ip地址

1.修改配置文件blacklist.conf禁用IPV6:
sudo vi /etc/modprobe.d/blacklist.conf

2.在文档最后添加 blacklist ipv6,然后查看修改结果:
cat /etc/modprobe.d/blacklist.conf

3.设置IP(设置网卡eth0的IP地址和子网掩码)
sudo ifconfig eth0 192.168.2.1 netmask 255.255.255.0

4.设置网关
sudo route add default gw 192.168.2.254

5. 设置DNS 修改/etc/resolv.conf,在其中加入nameserver DNS的地址1 和 nameserver DNS的地址2 完成。

6.重启网络服务(若不行,请重启 ubuntu:sudo reboot):
sudo /etc/init.d/networking restart

7. 查看当前IP:
ifconfig

二、直接修改系统配置文件

ubuntu的网络配置文件是:/etc/network/interfaces
打开后里面可设置DHCP或手动设置静态ip。前面auto eth0,让网卡开机自动挂载。
1. 以DHCP方式配置网卡
编辑文件/etc/network/interfaces:
sudo vi /etc/network/interfaces

并用下面的行来替换有关eth0的行:
# The primary network interface - use DHCP to find our address
auto eth0
iface eth0 inet dhcp

用 下面的命令使网络设置生效:
sudo /etc/init.d/networking restart

也可以在命令行下直接输入下面的命令来 获取地址
sudo dhclient eth0

2. 为网卡配置静态IP地址
编辑文件/etc/network/interfaces:
sudo vi /etc/network/interfaces

并用下面的行来替换有关eth0的行:
# The primary network interface
auto eth0
iface eth0 inet static
address 192.168.2.1
gateway 192.168.2.254
netmask 255.255.255.0
#network 192.168.2.0
#broadcast 192.168.2.255

将上面的ip地址等信息换成 你自己就可以了.用下面的命令使网络设置生效:
sudo /etc/init.d/networking restart

3. 设定第二个IP地址(虚拟IP地址)
编辑文件/etc /network/interfaces:
sudo vi /etc/network/interfaces

在 该文件中添加如下的行:
auto eth0:1
iface eth0:1 inet static
address x.x.x.x
netmask x.x.x.x
network x.x.x.x
broadcast x.x.x.x
gateway x.x.x.x

根据你的情况填上所有诸如address,netmask,network,broadcast和 gateways等信息:
用下面的命令使网络设置生效:
sudo /etc/init.d/networking restart
4. 设置主机名称(hostname)
使用下面的命令来查看当前主机的主机名称:
sudo /bin/hostname

使 用下面的命令来设置当前主机的主机名称:
sudo /bin/hostname newname

系 统启动时,它会从/etc/hostname来读取主机的名称。

5. 配置DNS
首先,你可以在/etc /hosts中加入一些主机名称和这些主机名称对应的IP地址,这是简单使用本机的静态查询。 要访问DNS 服务器来进行查询,需要设置/etc/resolv.conf文件,假设DNS服务器的IP地址是192.168.2.2, 那么/etc/resolv.conf文件的内容应为:
search chotim.com
nameserver 192.168.2.2

6.手动重启网络服务:
sudo /etc/init.d/networking restart

返回结果如下:
*Reconfiguring network interfaces… [OK]
分享到:
评论

相关推荐

    Linux Tips Linux 小技巧合集 DOC

    这份"Linux Tips Linux 小技巧合集 DOC"包含了多个实用的Linux使用技巧,旨在帮助用户更加高效地操作和管理Linux系统。以下是这些文档中可能包含的一些关键知识点: 1. **命令行基础**: - `ls`:列出目录内容。 ...

    Linux Tips - Bufferbloat.pdf

    在Linux系统中,Bufferbloat是一个常见的网络性能问题,它指的是由于网络接口缓冲区中积累过多的数据而导致的延迟增加和网络性能下降。Bufferbloat可能导致数据包在网络中的等待时间过长,影响了网络的实时性和用户...

    DescomplicandoPacker:LinuxTips Uncomplicating Packer中的文件

    DescomplicandoPacker LinuxTips Uncomplicating Packer中的文件要求吉特码头工人怎么跑user@pc$ git clone https://github.com/diegoaceneves/DescomplicandoPacker.gituser@pc$ cd DescomplicandoPackeruser@pc$ ...

    Linux_books.rar_linux

    Linux Tips and Tricks to enhance the efficiency of the usage of Linux Operating System

    Linux命令提示工具_client_Linux_tips.zip

    Linux命令提示工具_client_Linux_tips

    Linux Debugging and Performance Tuning Tips and Techniques.rar

    "Linux Debugging and Performance Tuning Tips and Techniques"这个压缩包文件显然是为了帮助用户掌握这些技能而设计的。这里,我们将深入探讨其中可能包含的一些关键知识点。 **Linux Debugging** 1. **日志分析*...

    Linux Debugging and Performance Tuning Tips and Techniques

    ### Linux调试与性能调优技巧和技术 #### 一、概览 《Linux调试与性能调优:技巧和技术》是一本全面介绍如何在Linux系统中进行软件调试和性能优化的专业书籍。作者Steve Best凭借其在IBM丰富的Linux系统优化经验,...

    Linux_Debugging_and_Performance_Tuning_Tips_and_Techniques Part1

    Linux调试技术和性能调优手段,chm格式

    渗透测试TIPS之删除伪造Linux系统登录日志1

    在渗透测试过程中,为了隐藏入侵者的踪迹,避免被系统管理员发现,删除和伪造Linux系统的登录日志是一项关键技能。本文将深入探讨如何处理Linux中的utmp、wtmp、btmp以及lastlog这些与登录相关的二进制日志文件。 ...

    CATT-L#Tips#CentOS 优化 Linux 内核参数1

    CentOS 优化 Linux 内核参数在末尾追加以下内容使配置立即生效。

    Linux_Bash命令清单_bash-tips.zip

    Linux_Bash命令清单_bash-tips

    linux_starter_pack

    linux经典入门书 The Linux Starter Pack -- (C) Future Publishing ...news, tutorials, tips and features you need to get more from your OS -- it's the essential read for all Linux users!

    Linux Debugging and Performance Tuning (Prentice, 2005)

    Linux Debugging and Performance Tuning (Prentice, 2005)

    Linux Server Hacks

    描述中的“Tips Tools”提示读者这本书会提供具体的技巧和实用工具,而“Connecting Monitoring and Troubleshooting”则涉及了书中的具体内容领域。 在Linux操作系统的世界里,服务器的维护和优化是相当复杂的工作...

    Linux_Debugging_and_Performance_Tuning_Tips_and_Techniques.part2

    Linux调试方法和性能调优,chm格式

    Linux Pocket Guide

    Throw in a host of valuable power user tips and a friendly and accessible style, and you'll quickly find this practical, to-the-point book a small but mighty resource for Linux users.

    linux安装步骤详解

    Linux 安装步骤详解 Linux 操作系统的安装是一个复杂的过程,需要用户具备...在本文中,我们详细介绍了 Linux 安装的步骤和过程,并提供了一些有用的 tips 和建议。希望这些信息能够帮助您成功地安装 Linux 操作系统。

    Linux性能与安全合集

    Linux Security Tips(Linux 安全技巧).pdf linux 系统安全与优化中文版 by smallfish.pdf Linux 系统安全与优化中文版221.pdf Linux 进程管理.pdf Linux安全和优化.pdf linux服务器优化调优笔记.pdf Linux的...

Global site tag (gtag.js) - Google Analytics