新服务器-E003
| 编号 | 类型 | 数据 |
| 1 | 服务器编号 | E003 |
| 2 | 服务器序列 |
no-14 |
| 3 | CPU | 志强X3440 4核心8线程 |
| 4 | 内存 | 1333 2G |
| 5 | 硬盘型号 | 西部数据 WD5003ABYX |
| 6 | 主板 | 超微 |
| 7 | 机房 | 凤凰城 |
| 8 | 用途 | web 虚拟主机 |
| 9 | 网络端口 | 1千兆网络 |
| 10 | 流量 | 10T |
正版Win2008
服务器硬件信息

| 编号 | 类型 | 数据 |
| 1 | 服务器编号 | E003 |
| 2 | 服务器序列 |
no-14 |
| 3 | CPU | 志强X3440 4核心8线程 |
| 4 | 内存 | 1333 2G |
| 5 | 硬盘型号 | 西部数据 WD5003ABYX |
| 6 | 主板 | 超微 |
| 7 | 机房 | 凤凰城 |
| 8 | 用途 | web 虚拟主机 |
| 9 | 网络端口 | 1千兆网络 |
| 10 | 流量 | 10T |
正版Win2008
服务器硬件信息

今天收到PhotoVPS的通知, 网络进行维护。
We will be conducting a network maintenance on our core infrastructure this Saturday @ 2:00 PM PST (GMT-8) 10/29/2011. The upgrade consists of bringing in additional network capacity to our network along with upgrading our core routers. Reviewing our current analysis on our traffic patterns we’ll outgrow our current capacity within a few weeks/months. Thus we are taking this opportunity to increase our core infrastructure before we outgrow our current capacity.
We picked this time due to the lowest traffic usage. There will be brief interruption while we upgrade our equipment lasting roughly 30 minutes. The outages are simple BGP convergence while everything re-route around the down circuits. We thank everyone for understanding and hope the added feature will benefit everyone in the long run. If you have any question in regards to this upgrade please contact our support team.
Thank you for your continued support
Profuse Solutions Team
今天一个网友说华军软件园的一台图像服务器被黑了, 上去一看, 果然显示黑客信息, 根据拼音应该是战神。
Hacked by zhanshen,just for fun! QQ:371876213

今天要挂载一个分区/dev/xvdc,结果提示不正确, 才想起来是LVM卷。
mount: block device /dev/xvde1 is write-protected, mounting read-only
mount: wrong fs type, bad option, bad superblock on /dev/xvde1,
missing codepage or other error
In some cases useful info is found in syslog – try
dmesg | tail or so
我们通过pvs命令查看系统卷, 分别有2个 一个是VolGroup00 和VolGroup0064
修改VG 卷的名称,我们可以使用命令 vgrename VolGroup0064 VolGroup2011
如果2个卷的名称相同,通过vgs -v 命令查找 UUID
[root@cntob ~]# vgs -v
Finding all volume groups
Finding volume group "VolGroup0064"
Finding volume group "VolGroup00"
VG Attr Ext #PV #LV #SN VSize VFree VG UUID
VolGroup00 wz–n- 32.00M 2 2 0 9.84G 0 ONGPxy-HBvY-xrrQ-IjEW-PIiO-2cX7-tg6tuI
VolGroup0064 wz–n- 32.00M 2 2 0 9.84G 0 p5nmsM-bw9a-Kuca-wvWT-f8pT-hZeJ-Y6LfZc
通过UUID 修改名称
vgrename ONGPxy-HBvY-xrrQ-IjEW-PIiO-2cX7-tg6tuI VolGroup01
通过lvscan命令可以看到系统2个卷都激活了。
如果没有激活还可以通过 vgchange -ay /dev/VolGroup00 命令激活
然后通过 mount /dev/VolGroup0064/LogVol00 /d 挂载到/d目录
输入df -h 我们可以看到 分区已经挂载成功!

Dear Valued BurstNET Customer,
In the past 12 hours, multiple Windows updates have been pushed. These updates are currently causing heavy system load, slowness or (at times) complete loss in connectivity to Windows VMs.
Our technicians are attempting to kill any processes that appear to be "stuck" and are detrimentally affecting other services on the node.
At this time, the best thing you can do is to wait for updates to complete.
*** We ask that you DO NOT try to restart updates or reboot the service. This will only complicate the situation and may lead to extended inaccessibility.
We are also requesting that ALL Windows hosting clients ensure that updates _can_ be run, by checking firewall restrictions and update settings and making any necessary adjustments to allow critical OS updates processes to successfully complete.
If you currently have a ticket related to this issue and find that Windows updates are the cause or that service is restored to normal, please close your ticket as soon as possible. This will aid us in assisting those users still having problems.
/bin:bin是binary的缩写。这个目录是对UNIX系统习惯的沿袭,存放着使用者最经常使用的命令。例如:cp,ls,cat。
/boot:这里存放的是启动LINUX时使用的一些核心文件。
/dev:dev是device(设备)的缩写。这个目录下是所有LINUX的外部设备,其功能类似DOS下的.sys和Win下的.vxd。在LINUX中设备和文件是用同种方法访问的。例如:/dev/hda代表第一个物理IDE硬盘。
/etc:这个目录用来存放所有的系统管理所需要的配置文件和子目录。
/home:用户的主目录
/lib:这个目录里存放着系统最基本的动态链接共享库,其作用类似于Windows里的.dll文件。几乎所有的应用程序都需要用到这些共享库。
/lost+found:这个目录平时是空的,当系统不正常关机后,这里就成了一些无家可归的文件的避难所。对了,有点类似于DOS下的.chk文件。
/mnt:这个目录是空的,系统提供这个目录是让用户临时挂载别的文件系统。
/proc:这个目录是一个虚拟的目录,它是系统内存的映射,我们可以通过直接访问这个目录来获取系统信息。也就是说,这个目录的内容不在硬盘上而是在内存里啊!?
/root:系统管理员,也叫作超级权限者的用户主目录。当然系统的拥有者,总要有些特权啊!
/sbin:s就是Super User的意思,也就是说这里存放的是一些系统管理员使用的系统管理程序。
/tmp:这个目录不用说,一定是用来存放一些临时文件的地方了。
/var:这个目录中存放着那些不断在扩充着的东西,为了保持/usr的相对稳定,那些经常被修改的目录可以放在这个目录下,实际上许多系统管理员都是这样干的。顺带说一下系统的日志文件就在/var/log目录中
/usr:这是个最庞大的目录,我们要用到的很多应用程序和文件几乎都存放在这个目录下。具体来说:
/usr/X11R6 存放X-Windows的目录;
/usr/bin 存放着许多应用程序;
/usr/sbin 给超级用户使用的一些管理程序就放在这;
/usr/doc 这就是LINUX文档的大本营;
/usr/include LINUX下开发和编译应用程序需要的头文件,在这找;
/usr/lib 存放一些常用的动态链接共享库和静态档案库;
/usr/local 这是提供给一般用户的/usr目录,在这安装软件最适合;
/usr/man man是什么,对了是帮助。这里就是帮助文档目录啊!
/usr/src LINUX开放的源代码,就存在这个目录,爱好者们别放过哦!
/boot/grub/grub.conf GRUB 引导器配置文件
/boot/module-info-* Linux 核心模块信息
/boot/System.map-* Linux 系统影像文件
/boot/vmlinuz-* Linux 核心
/etc/aliases 邮件别名
/etc/at.deny 记录哪些用户静止使用 at 命令
/etc/auto.master 配置 autofs 程序,使之能自动装入文件系统
/etc/auto.misc automounter 的影像文件
/etc/bashrc bash shell 的系统全局配置
/etc/cron.daily/* 每天需要执行的命令
/etc/cron.hourly/* 每个小时需要执行的命令
/etc/cron.monthly/* 每个月需要执行的命令
/etc/cron.weekly/* 每周需要执行的命令
/etc/crontab cron 系统配置文件,配置指定时间执行命令
/etc/cups/* 打印机配置文件
/etc/default/useradd useradd 命令默认的配置(用来增加新用户用)
/etc/DIR_COLORS 用彩色方式列出文件的颜色配置文件
/etc/exports 指定 NFS 需要导出的文件系统
/etc/filesystems 所支持的文件系统
/etc/fstab 指定文件系统的载入点
/etc/group 系统用户组的定义文件
/etc/host.conf 主机配置文件
/etc/hosts 主机名字和IP的影像文件
/etc/hosts.allow 定义允许访问本机的主机
/etc/hosts.deny 定义禁止访问本机的主机
/etc/httpd/conf/* Apache 配置文件
/etc/httpd/httpd.conf Apache 主配置文件
/etc/init.d/* SysV 初始化脚本
/etc/initlog.conf 用户登陆配置文件
/etc/inittab 配置 init ,用来执行命令 系统启动后为图形界面or文本界面
/etc/issue 显示Linux核心的发行版本信息(用于本地登陆用户)
/etc/issue/net 显示Linux核心和发行版本信息(用于远程登陆用户)
/etc/ld.so.conf 共享库配置文件
/etc/login.defs useradd 和 related 命令的配置文件
/etc/mail/* 邮件服务器配置文件
/etc/mailcap 邮件 MIME 头信息
/etc/man.config man 命令配置文件
/etc/mime.types 定义 MIME 类型
/etc/mime-magic* MIME 数据的 Magic 数
/etc/minicom.users 定义哪些用户ID可以使用 minicom
/etc/modules.conf Linux 核心模块配置文件
/etc/motd Message of the day (登陆以后显示里面的内容)
/etc/mtab 显示已装入的文件系统
/etc/nsswitch.conf Resolver 配置文件
/etc/openldap/* Open LDAP 配置文件
/etc/pam.d/* PAM 配置文件
/etc/paper.config 定义纸张的大小
/etc/passwd 帐户配置文件
/etc/ppp/* PPP 配置文件
/etc/printcap 打印机选项和配置文件
/etc/profile bash shell 的默认启动文件
/etc/profile.d/* Shell 初始化文件
/etc/protocols 显示网络协议想对应的内容
/etc/pwdb.conf pwdb 库配置文件
/etc/rc 系统启动和关闭的脚本
/etc/rc.local 本地启动时需要执行的脚本
/etc/rc.sysinit 系统初始化脚本
/etc/rc?.d/* 系统服务启动或者停止的脚本
/etc/rpc 定义 RPC 程序对应的端口
/etc/rpm/* RPM 数据库和配置文件
/etc/samba/* Samba 配置文件
/etc/securetty Secure tty 配置文件
/etc/security/* PAM 配置文件
/etc/sensors.conf libsensors 配置文件
/etc/services 定义默认的服务名字和与此向对应的端口
/etc/shadow 用户帐户信息(使用 shadow 加密)
/etc/skel 系统骨干文件,用来建立新的用户
/etc/ssh/* SSH 配置文件
/etc/sysconfig/* 系统配置文件
/etc/sysconfig/network-scripts/* 网络适配器配置文件(用来启动新的网络接口用)
/etc/sysctl.conf sysctl 配置文件
/etc/syslog.conf 系统日志配置文件
/etc/termcap 终端定义和配置文件
/etc/updatedb.conf 系统升级程序的配置文件(估计时 RH 专用的)
/etc/wvdial.conf 字符界面下的拨号工具配置文件
/etc/X11/applnk/* 定义 X 对象
/etc/X11/fs/config X 字体配置文件
/etc/X11/gdm/* GNOME 登陆器配置文件
/etc/X11/xdm/* X 登陆器的配置文件
/etc/X11/XF86Config X 主要配置文件
/etc/X11/xinit/Xclients xinit 默认的配置文件
/etc/X11/xinit/xinitrc X 初始化文件
/etc/X11/Xmodmap 定义 xdm 和 xinit 所要使用的键盘映射
/etc/xinetd.conf xinetd 配置文件
/etc/xinetd.d 定义 xinetd 中使用的一些特殊的服务
~/public_html 用户公共的网页文件(可以在 apache 配置)
~/.bash_history 用户 bash 的历史命令
~/.bash_logout 定义 bash 用户退出时所执行的命令
~/.bash_profile 用户 bash 初始化文件
~/.bashrc 用户 bash 的全局配置文件
~/.Xresources 定义用户的 X 资源设置
/usr/share/fonts/* 字体
/usr/share/ssl/openssl.cnf SSL 连接配置
/usr/X11R6/lib/X11/app-defaults/* X 默认的对象
/usr/X11R6/lib/X11/fonts/* X 字体
/var/log/cron 记录 cron 执行日志
/var/log/httpd/access_log apache 流量日志
/var/log/httpd/error_log apache 运行错误日志
/var/log/boot.log 系统启动日志
/var/log/cron 系统核心日志
/var/log/dmesg Linux 核心消息日志
/var/log/lastlog 记录最后用户登陆
/var/log/maillog 邮件传输日志
/var/log/messages 系统日志
/var/log/samba/* Samba 运行日志
/var/log/secure 系统安全日志
/var/log/up2date Up2date 升级程序日志
/var/www/cgi-bin CGI 脚本
/var/www/html/ apache 程序默认的网页根目录
参考资料 : Linux指令范例速查手册 作者:黄照鹤
LVM命令列表:
1.extendfs 扩展一个离线文件系统
# extendfs /dev/VolGroup00/LogVol01
2.lvchange 改变一个逻辑卷的的属性
# lvchange -t 60 /dev/VolGroup00/LogVol01
3.lvcreate 在卷组中创建一个逻辑卷
# lvcreate -L 100 /dev/VolGroup00
4.lvdisplay 显示逻辑卷的信息
# lvdisplay -v /dev/VolGroup00/LogVol01
5.lvextend 增加分配给逻辑卷的物理区域数
为逻辑卷添加镜像
# lvextend -m 1 /dev/VolGroup00/LogVol01
增加逻辑卷的大小
# lvextend -L 120 /dev/VolGroup00/LogVol01
6.lvlnboot 将逻辑卷设为启动,交换或内存映像卷
# lvlnboot -d /dev/VolGroup00/LogVol01
7.lvmerge 将以前镜像的卷合并成一个逻辑镜像卷
# lvmerge /dev/VolGroup00/LogVol01 /dev/VolGroup00/LogVol02
8.lvreduce 减少分配给逻辑卷的物理区域数
减小逻辑卷的大小:
# lvreduce -L 100 /dev/VolGroup00/LogVol01
减小逻辑卷的镜像副本的数量:
# lvreduce -m 0 /dev/VolGroup00/LogVol01
9.lvremove 从卷组中删除一个或多个逻辑卷
# lvremove /dev/VolGroup00/LogVol01
10.lvrmboot 删除联接到启动,交换或内存映像卷的逻辑卷
# lvrmboot -d /dev/VolGroup00/LogVol01
11.lvsplit 将镜像的逻辑卷分成两个逻辑卷
# lvsplit /dev/VolGroup00/LogVol01
12.lvsync 同步在一个或多少失效逻辑卷上的逻辑卷镜像
# lvsync /dev/VolGroup00/LogVol01
13.pvchange 改变卷组中的物理卷的属性
# pvchange -a n /dev/disk/by-label
14.pvcreate 创建一个可以被卷组使用的物理卷
# pvcreate /dev/disk/by-label
15.pvdisplay 显示卷组中一个或多个物理卷的信息
# pvdisplay -v /dev/disk/by-label
16.pvmove 将分配的物理区域从一个物理卷转移鲐其他物理卷
# pvmove /dev/disk/by-label /dev/disk/by-label2
17.pvremove 从物理卷中删除 LVM 数据结构
# pvremove /dev/disk/by-label
18.vgcfgbackup 保存卷组LVM配置
# vgcfgbackup VolGroup00
19.vgcfgrestore 将LVM配置恢复 到卷组
# vgcfgrestore -n /dev/VolGroup00 /dev/disk/by-label2
20.vgchange 开关卷组的一些状态
# vgchange -a y /dev/VolGroup00
21.vgchgid 更改物理卷的卷组 ID:
# vgchgid /dev/disk/by-label
22.vgcreate 创建一个卷组
# vgcreate /dev/VolGroup00 /dev/disk/by-label1 /dev/disk/by-label2
23.vgdisplay 显示卷组信息
# vgdisplay -v /dev/VolGroup00
24.vgextend 通过添加物理卷扩展一个卷组
# vgextend /dev/VolGroup00 /dev/disk/by-label
25.vgexport 从系统输出一个卷组
# vgexport /dev/VolGroup00
26.vgimport 向系统输入一个卷组
# mkdir /dev/VolGroup00 # mknod /dev/VolGroup00 /group c 640x0n0001# vgimport -v /dev/VolGroup00
27.vgmodify 修改卷组的配置参数
# vgmodify -v -t -n -r /dev/disk/by-label
28.vgscan 扫描卷组的系统物理卷
# vgscan -v
29.vgreduce 通过删除一个或多个物理卷减小卷组
# vgreduce /dev/VolGroup00 /dev/disk/by-label
30.vgremove 从系统上删除一个或多个卷组的定义
# vgremove /dev/VolGroup00 /dev/disk/by-label
31.vgsync 同步在一个或多个失效卷组上的逻辑镜像
# vgsync VolGroup00
32.pvck 对物理卷执行一致性检查
# pvck /dev/disk/by-label
昨天开始用金山T盘备份邮件,居然提示“月流量超标”。
以前也有提示日流量超标也就算了, 第二天再用, 现在又来了月流量超标,难道要我等到下个月再用。
官网查询了一下,新版本的T盘多了很多限制。
尊敬的 T 盘用户,您好:
为了合理分配金山 T 盘的服务器资源,确保绝大多数用户流畅使用,在使用金山 T 盘时,可能会遇到如下限制:
1. 每天最大流量 10G
2. 每月最大流量 30G
3. 文件夹总数最多 1万个
4. 文件总数最多 10万个
5. 每个目录下的第一层子目录和文件数最多 3000个
以上是根据 T 盘的情况综合评估的结果,一般情况下都不会遇到,请大家放心使用。
如果您不幸遇到了以上限制,感觉不便,我们深表歉意。
建议您采取诸如压缩文件夹等变通的方法,来解决此问题。
感谢您的理解和支持。
金山T盘 项目组
2011-8-5
不管是流量限制严格, 金山T盘容量严重缩水。 以前 1T容量 =1024G , 现在只有80G 容量。 硬件和网络跟不上就不要吹那么大, 还T盘呢 , 牛皮都吹破了。
现在T盘已经废了,伤不起啊!

现在机房大部分都提供KVM设备给客户自己操作,处理问题非常方便,而且可以自己进行安装操作系统。
KVM设备名称 Lantronix SLS
需要进行远程控制必须安装java 运行时才可以。
KVM控制台配置 KVM Console Settings
KVM Console Virtual Keys
键盘和鼠标设置
Keyboard/Mouse Settings
If the managed host has no USB keyboard support in the BIOS and only the USB cable is connected, then there will be no remote keyboard access during the host boot process. If USB and PS/2 are both connected and Auto is selected as the host interface, then the Spider will choose USB if available or else use PS/2.
Miscellaneous Video Settings
这里设置图像传输的质量,对于网速慢的同学可以选择最低速度。
虚拟驱动器配置
这里可以载入共享文件夹的光盘镜像,支持ISO格式
UI配置
可惜没有VIP权限
VIP Settings
Bootstrap Upload