Jeffrey’s Blog

Cisco 交换机命令全集

@ 阅读全文 | 2006/03/30 11:59pm | Category: 系统管理 | 1,428 views  
Tags:

Cisco 交换机命令全集
第一部分
1.在基于IOS的交换机上设置主机名/系统名:
switch(config)# hostname hostname
在基于CLI的交换机上设置主机名/系统名:
switch(enable) set system name name-string
2.在基于IOS的交换机上设置登录口令:
switch(config)# enable password level 1 password
在基于CLI的交换机上设置登录口令:
Continue Reading ...

cisco2950最基本配置

@ 阅读全文 | 2006/03/30 11:59pm | Category: 电脑网络, 系统管理 | 1,577 views  
Tags:

设置口令、修改主机名

 da3g_0815.jpeg

修改2950交换机IP:
2950(config)#int vlan1
2950(config-if)#ip address 172.16.10.254  255.255.255.0
2950(config-if)#no shut
2950(config-if)#exit
2950(config)#ip default-gateway Continue Reading ...

教你如何调试CISCO路由器

@ 阅读全文 | 2006/03/30 11:58pm | Category: 电脑网络, 系统管理 | 1,103 views  
第一部分
一、基本设置方式
一般来说,可以用5种方式来设置路由器:
1.Console口接终端或运行终端仿真软件的微机;
2.AUX口接MODEM,通过电话线与远方的终端或运行终端仿真软件的微机相连;
3.通过Ethernet上的TFTP服务器;
4.通过Ethernet上的TELNET程序;
5.通过Ethernet上的SNMP网管工作站。
Continue Reading ...

AS4+apache+tomcat完整安装笔记

@ 阅读全文 | 2006/03/30 11:57pm | Category: 应用服务 | 1,681 views  

1.下载apache、Tomcat、JK2、JDK1.50_04,并统一拷贝到/www
2.编绎apache
(1).tar xvzf ….
(2).cd ht….
(3)./configure –prefix=/web/apache –enable-mods-shared=all –enable-so
(4)make;make install
3.安装JDK
(1)cp jdk-1_5_0-04-Linux-i586-1.bin /web
(2)cd /web
(3)chmod 711 jdk-1_5_0-04-Linux-i586-1.bin
(4)./jdk-1_5_0-04-Linux-i586-1.bin
4.安装TOMCAT
Continue Reading ...

cacti安装笔记(0830修正)

@ 阅读全文 | 2006/03/30 11:57pm | Category: 应用服务 | 3,402 views  

1.安装apache
#tar xvzf xxxx
#./configure –prefix=/app/apache –enable-module=so && make && make install
#/app/apache/bin/apachectl start

2.安装mysql
#tar….
#./configure –prefix=/app/mysql && make && make install
#./scripts/mysql_install_db
ldconfig
./bin/mysqld_safe –user=root &
./bin/mysqladmin -u root -p password ‘xxxxxx’ #改root密码
./bin/mysql -p
mysql>use Continue Reading ...

用SecureCRT(Linux)来上传和下载数据

@ 阅读全文 | 2006/03/30 11:57pm | Category: 系统管理 | 1,685 views  
运行命令rz,即是接收文件,SecureCRT就会弹出文件选择对话框,选好文件之后关闭对话框,文件就会上传到当前目录
运行命令sz file1 file2就是发文件到windows上(保存的目录是可以配置) 比ftp命令方便多了,而且服务器不用再开FTP服务了
Continue Reading ...

mount windows‘s共享文件夹命令

@ 阅读全文 | 2006/03/30 11:57pm | Category: 系统管理 | 1,446 views  
mkdir /mnt/temp

mount -t smbfs -o uid=507,gid=507 -o username=xxx,password=xxx //192.168.xx.xx/ftpkejian /mnt/xxx

Continue Reading ...

使用Windows 系统性能监控来报警磁盘空间不足

@ 阅读全文 | 2006/03/30 11:56pm | Category: 系统管理 | 1,694 views  

第一步 启用“性能”功能
在 服务器中,点击“开始→运行”,在“运行”对话框中输入“perfmon.msc”命令后回车,弹出“性能”管理主窗口。接着依次展开“性能日志和警报→ Continue Reading ...

secureCRT设置彩色和显示中文

@ 阅读全文 | 2006/03/30 11:56pm | Category: 系统管理 | 5,417 views  

好多人以为SecureCRT不能显示彩色字,其实是没找到设置的地方,你可以这样设置
Options->SessionOptions ->Emulation,然后把Terminal类型改成xterm,并点中ANSI Color复选框。
Continue Reading ...

mantis配置笔记

@ 阅读全文 | 2006/03/30 11:55pm | Category: 应用服务 | 1,946 views  

mantis是一个bug跟踪管理系统,感觉还不错.
下面是我的安装过程(mysql+php环境)
1.搭建环境(略…)
2.下载压缩包,并解压tar xvzf …….
mv 解压后文件夹 /usr/local/apache/htdocs/mantis
cd /usr/local/apache/htdocs/mantis
/usr/local/mysql/bin/mysqladmin –user=root -p create mantis #创建表
/usr/local/mysql/bin/mysql –user=root -p mantis < ./sql/db_generate.sql #导入表
cp  config_inc.php.sample  Continue Reading ...

Page 33 of 38« First...«3132333435»...Last »

京ICP备06038449号