游戏登录总网页一直显示loading“Error loading bitmap”,换个网就可以,这是怎么回事?

如何处理error loading library错误-CSDN论坛
如何处理error loading library错误
xp&sp3环境用pb12.5写得应用,xp和部分win7客户机下运行没问题,个别win7下运行提示错误,但不影响使用,如下:
修改兼容模式下运行、管理员身份运行问题依旧,如下图:
不知道是什么原因?没办法我想直接屏蔽这个错误,可是在pbl的systemerror下写代码也捕获不到。
请大侠帮忙,谢谢!
在xp&sp3兼容模式下运行,照样弹出这厮!
引用&1&楼&chaiwl8869&的回复:在xp&sp3兼容模式下运行,照样弹出这厮!
是不是少了个pbd之类的,全编译一下,把所有的pbd都复制过去
谢谢楼主,全加了也编译了。而且不是所有电脑都这样。现在我想屏蔽这个错误,怎么做?
我在应用的的systemerror下写代码捕获不到3DMAX小图渲染大图的时候突然出现一个对话框 显示Error creating Bitmap 大图渲染不了怎么办?_百度知道
3DMAX小图渲染大图的时候突然出现一个对话框 显示Error creating Bitmap 大图渲染不了怎么办?
3DMAX小图渲染大图的时候突然出现一个对话框 显示Error creating Bitmap 大图渲染不了怎么办? 现在连本人直接渲染大图 也是出现在的对话框 根本渲不过去。但是渲800*600的小图却能渲过去。 这是为什么呢?有什么办法解决 本人真的很着急。本人没有什么钱只能...
我有更好的答案
输出尺寸大了,在场景面数过多的情况下,受到内存影响,更难输出大图,一个办法是改小输出尺寸;还有个办法是把场景隐藏,勾选“渲染影藏物体”,让后保存-关闭,再打开点击渲染,有可能渲出来的,因为关闭一次max内存会释放一部分,渲染隐藏物体是为了再打开的时候少用点内存,这么说很详细了吧^_^
采纳率:16%
内存不够用吧,开起动态内存试试
这个是3DSMAX的一个限制,不允许渲染无限大的图片。 你只要不渲染超大图片就可以来。一般来说,大图渲染是没有问题的,效果也不错了。
我告诉你原因
其他1条回答
为您推荐:
其他类似问题
您可能关注的内容
bitmap的相关知识
换一换
回答问题,赢新手礼包
个人、企业类
违法有害信息,请在下方选择后提交
色情、暴力
我们会通过消息、邮箱等方式尽快将举报结果通知您。从中,我们学习了Android-Universal-Image-Loader(以下简称UIL)中四个DisplayImage重载方法的使用,如果你还没有学习,最好先返回去看看,不然可能不理解这篇文章。在这篇文章中我们将主要探讨Android-Universal-Image-Loader的主要流程和这些流程相关的类的分析。
我们先了解一下UIL加载图片的流程(可以通过查看ImageLoader.displayImage(&)方法分析得出),如下图
从上图中,我们可以看出,UIL加载图片的一般流程是先判断内存中是否有对应的Bitmap,再判断磁盘(disk)中是否有,如果没有就从网络中加载。最后根据原先在UIL中的配置判断是否需要缓存Bitmap到内存或磁盘中。Bitmap加载完后,就对它进行解析,然后显示到特定的ImageView中。
有了对UIL对图片加载和处理流程的初步认识之后,我们就可以着手分析它的源代码了。先从ImageLoader.displayImage(...)入手,毕竟一切都因它而始。
public void displayImage(String uri, ImageAware imageAware, DisplayImageOptions options,
ImageLoadingListener listener, ImageLoadingProgressListener progressListener) {
//检查UIL的配置是否被初始化
checkConfiguration();
if (imageAware == null) {
throw new IllegalArgumentException(ERROR_WRONG_ARGUMENTS);
if (listener == null) {
listener = emptyL
if (options == null) {
options = configuration.defaultDisplayImageO
if (TextUtils.isEmpty(uri)) {
engine.cancelDisplayTaskFor(imageAware);
listener.onLoadingStarted(uri, imageAware.getWrappedView());
if (options.shouldShowImageForEmptyUri()) {
imageAware.setImageDrawable(options.getImageForEmptyUri(configuration.resources));
imageAware.setImageDrawable(null);
listener.onLoadingComplete(uri, imageAware.getWrappedView(), null);
//计算Bitmap的大小,以便后面解析图片时用
ImageSize targetSize = ImageSizeUtils.defineTargetSizeForView(imageAware, configuration.getMaxImageSize());
String memoryCacheKey = MemoryCacheUtils.generateKey(uri, targetSize);
engine.prepareDisplayTaskFor(imageAware, memoryCacheKey);
listener.onLoadingStarted(uri, imageAware.getWrappedView());
//Bitmap是否缓存在内存?
Bitmap bmp = configuration.memoryCache.get(memoryCacheKey);
if (bmp != null && !bmp.isRecycled()) {
L.d(LOG_LOAD_IMAGE_FROM_MEMORY_CACHE, memoryCacheKey);
if (options.shouldPostProcess()) {
ImageLoadingInfo imageLoadingInfo = new ImageLoadingInfo(uri, imageAware, targetSize, memoryCacheKey,
options, listener, progressListener, engine.getLockForUri(uri));
//处理并显示图片
ProcessAndDisplayImageTask displayTask = new ProcessAndDisplayImageTask(engine, bmp, imageLoadingInfo,
defineHandler(options));
if (options.isSyncLoading()) {
displayTask.run();
engine.submit(displayTask);
//显示图片
options.getDisplayer().display(bmp, imageAware, LoadedFrom.MEMORY_CACHE);
listener.onLoadingComplete(uri, imageAware.getWrappedView(), bmp);
if (options.shouldShowImageOnLoading()) {
imageAware.setImageDrawable(options.getImageOnLoading(configuration.resources));
} else if (options.isResetViewBeforeLoading()) {
imageAware.setImageDrawable(null);
ImageLoadingInfo imageLoadingInfo = new ImageLoadingInfo(uri, imageAware, targetSize, memoryCacheKey,
options, listener, progressListener, engine.getLockForUri(uri));
//启动一个线程,加载并显示图片
LoadAndDisplayImageTask displayTask = new LoadAndDisplayImageTask(engine, imageLoadingInfo,
defineHandler(options));
if (options.isSyncLoading()) {
displayTask.run();
engine.submit(displayTask);
代码有点多,但是有很多代码是进行异常判断处理和函数的回调,为了先把握整体的流程,我们先放弃细节方面的追踪。基本上重要的处理流程我都有用注释标出。不过,从这段代码中我们也可以看出这段代码的结构非常清晰。对图片的整个的加载流程都有对应的监听接口(ImageLoadingListener.onLoadingStarted,ImageLoadingListener.onLoadingComplete,ImageLoadingListener这个类就是用来监听图片的加载过程的),也就是说整个的图片加载过程程序员都可以进行相应的处理。我们先关注一下图片从无到有的加载过程,毕竟这部分是大家最为关心的。看到第63行中的LoadAndDisplayImageTask,跟进LoadAndDisplayImageTask.run()方法中。在这个run()方法中,除了 bmp = tryLoadBitmap();这一句是对图片进行加载,其他的函数都是对Bitmap进行处理或者显示。我们继续进入看看。
1 private Bitmap tryLoadBitmap() throws TaskCancelledException {
Bitmap bitmap = null;
//尝试从磁盘缓存中读取Bitmap
File imageFile = configuration.diskCache.get(uri);
if (imageFile != null && imageFile.exists()) {
L.d(LOG_LOAD_IMAGE_FROM_DISK_CACHE, memoryCacheKey);
loadedFrom = LoadedFrom.DISC_CACHE;
checkTaskNotActual();
bitmap = decodeImage(Scheme.FILE.wrap(imageFile.getAbsolutePath()));
//没有缓存在磁盘,从网络中下载图片
if (bitmap == null || bitmap.getWidth() &= 0 || bitmap.getHeight() &= 0) {
L.d(LOG_LOAD_IMAGE_FROM_NETWORK, memoryCacheKey);
loadedFrom = LoadedFrom.NETWORK;
String imageUriForDecoding =
if (options.isCacheOnDisk() && tryCacheImageOnDisk()) {
imageFile = configuration.diskCache.get(uri);
if (imageFile != null) {
imageUriForDecoding = Scheme.FILE.wrap(imageFile.getAbsolutePath());
checkTaskNotActual();
bitmap = decodeImage(imageUriForDecoding);
if (bitmap == null || bitmap.getWidth() &= 0 || bitmap.getHeight() &= 0) {
fireFailEvent(FailType.DECODING_ERROR, null);
} catch (IllegalStateException e) {
fireFailEvent(FailType.NETWORK_DENIED, null);
} catch (TaskCancelledException e) {
} catch (IOException e) {
fireFailEvent(FailType.IO_ERROR, e);
} catch (OutOfMemoryError e) {
fireFailEvent(FailType.OUT_OF_MEMORY, e);
} catch (Throwable e) {
fireFailEvent(FailType.UNKNOWN, e);
从3~12行是尝试从磁盘缓存中加载Bitmap。第19行判断磁盘中是否有缓存,就开始进行网络下载(tryCacheImageOnDisk())。在tryCacheImageOnDisk()函数中有个tryCacheImageOnDisk()的 loaded = downloadImage()这行进行图片下载。
private boolean downloadImage() throws IOException {
InputStream is = getDownloader().getStream(uri, options.getExtraForDownloader());
return configuration.diskCache.save(uri, is, this);
这个函数做的事情很简单,就是获取一个实现Image Downloader的downloader(当然这里,作者根据网络情况将downloader分为慢速(slowNetworkDownloader)、正常速度(downloader)、网络拒绝(networkDeniedDownloader)情况下的download,在这里我们不展开,你只要知道他们是imageDownloader接口的实现者就行,后面的文章会探讨这个问题),然后利用Disk Cache将Bitmap写入磁盘缓存中。返回到之前我们进入downloadImage()函数中的tryLoadBitmap(),在将图片缓存到磁盘中。是否缓存到磁盘跟配置有关)后,紧接着调用 bitmap = decodeImage(Scheme.FILE.wrap(imageFile.getAbsolutePath()));解析图片。进入decodeImage()函数中,我们发现UIL调用Image Decoder进行图片的解析。
private Bitmap decodeImage(String imageUri) throws IOException {
ViewScaleType viewScaleType = imageAware.getScaleType();
ImageDecodingInfo decodingInfo = new ImageDecodingInfo(memoryCacheKey, imageUri, uri, targetSize, viewScaleType,
getDownloader(), options);
return decoder.decode(decodingInfo);
decode()函数最终是调用BaseImageDecoder.decode()方法进行解析的,这个利用之前获得的inputStream,直接从它身上读取数据,然后进行解析,并对整个下载任务的网络接口进行重置。
1 public Bitmap decode(ImageDecodingInfo decodingInfo) throws IOException {
Bitmap decodedB
ImageFileInfo imageI
InputStream imageStream = getImageStream(decodingInfo);
imageInfo = defineImageSizeAndRotation(imageStream, decodingInfo);
imageStream = resetStream(imageStream, decodingInfo);
Options decodingOptions = prepareDecodingOptions(imageInfo.imageSize, decodingInfo);
decodedBitmap = BitmapFactory.decodeStream(imageStream, null, decodingOptions);
} finally {
IoUtils.closeSilently(imageStream);
if (decodedBitmap == null) {
L.e(ERROR_CANT_DECODE_IMAGE, decodingInfo.getImageKey());
decodedBitmap = considerExactScaleAndOrientatiton(decodedBitmap, decodingInfo, imageInfo.exif.rotation,
imageInfo.exif.flipHorizontal);
return decodedB
接下来,有了解析好的Bitmap对象后,剩下的就是在Image View对象中显示它了。我们回到文章一开始介绍到的ImageLoader.displayImage(...)函数中(相关的代码在文章的开头处可以看到)。
为了方便,我还是将ImageLoader.displayImage(...)中涉及的代码贴在下面。
DisplayBitmapTask displayBitmapTask = new DisplayBitmapTask(bmp, imageLoadingInfo, engine, loadedFrom);
runTask(displayBitmapTask, syncLoading, handler, engine);
我们进去DisplayBitmapTask.run()函数中看看。除去前面几行的ImageLoadingListener.ImageLoadingListener()代码,相关代码其实就一行&displayer.display(bitmap, imageAware, loadedFrom),它其实就是调用BitmapDisplayer这个对象将Bitmap对象显示到ImageView上。根据实现BitmapDisplayer接口的不同对象,还有SimpleBitmapDisplayer、FadeInBitmapDisplayer、RoundedBitmapDisplayer、RoundedVignetteBitmapDisplayer这5种对象。
最后,让我们用任务流图概况以上的处理流程中对应接口。
在接下去的文章中,我们会介绍UIL中的包设计、缓冲、下载、多任务机制。
阅读(...) 评论()下了个epsxe1.7 模拟器运行bin,iso文件时都出现ePSXe error loading plugins\已关闭? ??_百度知道
下了个epsxe1.7 模拟器运行bin,iso文件时都出现ePSXe error loading plugins\已关闭? ??
我用win7系统,N卡GT240M,realtek声卡,驱动方面都是最新的 没办法了请各位高手们帮个忙吧!!!很想玩一下ps游戏啊!!!
我有更好的答案
运行:regeditHKEY_CURRENT_USER & Software & Epsxe 文件夹删除就可以了相当于把模拟器初始化,再重新设定
采纳率:100%
PS模拟器的各项插件你都没设置吧= =.....
为您推荐:
其他类似问题
epsxe的相关知识
换一换
回答问题,赢新手礼包
个人、企业类
违法有害信息,请在下方选择后提交
色情、暴力
我们会通过消息、邮箱等方式尽快将举报结果通知您。查看:9087|回复:6
我新买的服务器,在使用SSH或者FileZilla下载或者上传数据时经常自动重启(偶尔也可以正常下载),怎么解决了?
可以否决因CPU或者温度过高引起,因为有时开机,下载数据就重启
引用:原帖由 jsxzzhangchao 于
21:54 发表
我新买的服务器,在使用SSH或者FileZilla下载或者上传数据时经常自动重启(偶尔也可以正常下载),怎么解决了?
可以否决因CPU或者温度过高引起,因为有时开机,下载数据就重启
谢谢大家 ... 您好!如何看log?看不懂啊,我将log贴出来请大侠帮我看下哪里的问题,十分感谢!
Sep&&1 04:03:05 zcslcg syslogd 1.4.1: restart.
Sep&&1 04:08:55 zcslcg dhclient: DHCPREQUEST on eth0 to 210.45.144.111 port 67
Sep&&1 04:08:55 zcslcg dhclient: DHCPACK from 210.45.144.111
Sep&&1 04:08:55 zcslcg dhclient: bound to 210.45.153.100 -- renewal in 5376 seconds.
Sep&&1 04:13:49 zcslcg dhclient: DHCPREQUEST on eth1 to 210.45.144.111 port 67
Sep&&1 04:13:49 zcslcg dhclient: DHCPACK from 210.45.144.111
Sep&&1 04:13:49 zcslcg dhclient: bound to 210.45.153.95 -- renewal in 5336 seconds.
Sep&&1 04:31:42 zcslcg smartd[6800]: Device: /dev/sda, 2 Currently unreadable (pending) sectors
Sep&&1 04:31:42 zcslcg smartd[6800]: Device: /dev/sda, 2 Offline uncorrectable sectors
Sep&&1 04:59:35 zcslcg : error getting update info: Cannot find a valid baseurl for repo: addons
Sep&&1 05:01:42 zcslcg smartd[6800]: Device: /dev/sda, 2 Currently unreadable (pending) sectors
Sep&&1 05:01:42 zcslcg smartd[6800]: Device: /dev/sda, 2 Offline uncorrectable sectors
Sep&&1 05:31:43 zcslcg smartd[6800]: Device: /dev/sda, 2 Currently unreadable (pending) sectors
Sep&&1 05:31:43 zcslcg smartd[6800]: Device: /dev/sda, 2 Offline uncorrectable sectors
Sep&&1 05:38:31 zcslcg dhclient: DHCPREQUEST on eth0 to 210.45.144.111 port 67
Sep&&1 05:38:31 zcslcg dhclient: DHCPACK from 210.45.144.111
Sep&&1 05:38:32 zcslcg dhclient: bound to 210.45.153.100 -- renewal in 4880 seconds.
Sep&&1 05:42:45 zcslcg dhclient: DHCPREQUEST on eth1 to 210.45.144.111 port 67
Sep&&1 05:42:45 zcslcg dhclient: DHCPACK from 210.45.144.111
Sep&&1 05:42:46 zcslcg dhclient: bound to 210.45.153.95 -- renewal in 5124 seconds.
Sep&&1 05:59:35 zcslcg : error getting update info: Cannot find a valid baseurl for repo: addons
Sep&&1 06:01:42 zcslcg smartd[6800]: Device: /dev/sda, 2 Currently unreadable (pending) sectors
Sep&&1 06:01:42 zcslcg smartd[6800]: Device: /dev/sda, 2 Offline uncorrectable sectors
Sep&&4 21:25:37 zcslcg kernel:& &MEM window: disabled.
Sep&&4 21:25:37 zcslcg kernel:& &PREFETCH window: disabled.
Sep&&4 21:25:37 zcslcg kernel: PCI: Bridge: .0
Sep&&4 21:25:37 zcslcg kernel:& &IO window: disabled.
Sep&&4 21:25:37 zcslcg kernel:& &MEM window: disabled.
Sep&&4 21:25:37 zcslcg kernel:& &PREFETCH window: disabled.
Sep&&4 21:25:37 zcslcg kernel: PCI: Bridge: .2
Sep&&4 21:25:37 zcslcg kernel:& &IO window: disabled.
Sep&&4 21:25:37 zcslcg kernel:& &MEM window: disabled.
Sep&&4 21:25:37 zcslcg kernel:& &PREFETCH window: disabled.
Sep&&4 21:25:37 zcslcg kernel: PCI: Bridge: .0
Sep&&4 21:25:37 zcslcg kernel:& &IO window: 2000-2fff
Sep&&4 21:25:37 zcslcg kernel:& &MEM window: d1a00000-d1afffff
Sep&&4 21:25:37 zcslcg kernel:& &PREFETCH window 0x00000fbcfffff
Sep&&4 21:25:37 zcslcg kernel: PCI: Bridge: c.0
Sep&&4 21:25:37 zcslcg kernel:& &IO window: 1000-1fff
Sep&&4 21:25:37 zcslcg kernel:& &MEM window: dfffff
Sep&&4 21:25:37 zcslcg kernel:& &PREFETCH window: disabled.
Sep&&4 21:25:37 zcslcg kernel: PCI: Bridge: c.7
Sep&&4 21:25:37 zcslcg kernel:& &IO window: disabled.
Sep&&4 21:25:37 zcslcg kernel:& &MEM window: dfffff
Sep&&4 21:25:37 zcslcg kernel:& &PREFETCH window: disabled.
Sep&&4 21:25:37 zcslcg kernel: PCI: Bridge: e.0
Sep&&4 21:25:37 zcslcg kernel:& &IO window: disabled.
Sep&&4 21:25:37 zcslcg kernel:& &MEM window: disabled.
Sep&&4 21:25:37 zcslcg kernel:& &PREFETCH window: disabled.
Sep&&4 21:25:37 zcslcg kernel: GSI 16 sharing vector 0x98 and IRQ 16
Sep&&4 21:25:37 zcslcg kernel: ACPI: PCI Interrupt .0[A] -& GSI 47 (level, low) -& IRQ 16
Sep&&4 21:25:37 zcslcg kernel: ACPI: PCI Interrupt .0[A] -& GSI 47 (level, low) -& IRQ 16
Sep&&4 21:25:37 zcslcg kernel: ACPI: PCI Interrupt .2[A] -& GSI 47 (level, low) -& IRQ 16
Sep&&4 21:25:37 zcslcg kernel: ACPI: PCI Interrupt .0[A] -& GSI 47 (level, low) -& IRQ 16
Sep&&4 21:25:37 zcslcg kernel: ACPI: PCI Interrupt .2[A] -& GSI 47 (level, low) -& IRQ 16
Sep&&4 21:25:37 zcslcg kernel: GSI 17 sharing vector 0xA0 and IRQ 17
Sep&&4 21:25:37 zcslcg kernel: ACPI: PCI Interrupt .0[A] -& GSI 16 (level, low) -& IRQ 17
Sep&&4 21:25:37 zcslcg kernel: ACPI: PCI Interrupt c.0[A] -& GSI 16 (level, low) -& IRQ 17
Sep&&4 21:25:37 zcslcg kernel: GSI 18 sharing vector 0xA8 and IRQ 18
Sep&&4 21:25:37 zcslcg kernel: ACPI: PCI Interrupt c.7[D] -& GSI 19 (level, low) -& IRQ 18
Sep&&4 21:25:37 zcslcg kernel: NET: Registered protocol family 2
Sep&&4 21:25:37 zcslcg kernel: IP route cache hash table entries: 524288 (order: 10, 4194304 bytes)
Sep&&4 21:25:37 zcslcg kernel: TCP established hash table entries: 262144 (order: 10, 4194304 bytes)
Sep&&4 21:25:37 zcslcg kernel: TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
Sep&&4 21:25:37 zcslcg kernel: TCP: Hash tables configured (established 262144 bind 65536)
Sep&&4 21:25:37 zcslcg kernel: TCP reno registered
Sep&&4 21:25:37 zcslcg kernel: audit: initializing netlink socket (disabled)
Sep&&4 21:25:37 zcslcg kernel: type=2000 audit(.181:1): initialized
Sep&&4 21:25:37 zcslcg kernel: VFS: Disk quotas dquot_6.5.1
Sep&&4 21:25:37 zcslcg kernel: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Sep&&4 21:25:37 zcslcg kernel: Initializing Cryptographic API
Sep&&4 21:25:37 zcslcg kernel: alg: No test for crc32c (crc32c-generic)
Sep&&4 21:25:37 zcslcg kernel: ksign: Installing public key data
Sep&&4 21:25:37 zcslcg kernel: Loading keyring
Sep&&4 21:25:37 zcslcg kernel: - Added public key 57FE
Sep&&4 21:25:37 zcslcg kernel: - User ID: CentOS (Kernel Module GPG key)
Sep&&4 21:25:37 zcslcg kernel: io scheduler noop registered
Sep&&4 21:25:37 zcslcg kernel: io scheduler anticipatory registered
Sep&&4 21:25:37 zcslcg kernel: io scheduler deadline registered
Sep&&4 21:25:37 zcslcg kernel: io scheduler cfq registered (default)
Sep&&4 21:25:37 zcslcg kernel: ACPI: PCI Interrupt .0[A] -& GSI 47 (level, low) -& IRQ 16
Sep&&4 21:25:37 zcslcg kernel: assign_interrupt_mode Found MSI capability
Sep&&4 21:25:37 zcslcg kernel: ACPI: PCI Interrupt .0[A] -& GSI 47 (level, low) -& IRQ 16
Sep&&4 21:25:37 zcslcg kernel: assign_interrupt_mode Found MSI capability
Sep&&4 21:25:37 zcslcg kernel: ACPI: PCI Interrupt .2[A] -& GSI 47 (level, low) -& IRQ 16
Sep&&4 21:25:37 zcslcg rpc.statd[4856]: Version 1.0.9 Starting
Sep&&4 21:25:37 zcslcg kernel: assign_interrupt_mode Found MSI capability
Sep&&4 21:25:37 zcslcg kernel: ACPI: PCI Interrupt .0[A] -& GSI 47 (level, low) -& IRQ 16
Sep&&4 21:25:37 zcslcg kernel: assign_interrupt_mode Found MSI capability
Sep&&4 21:25:37 zcslcg kernel: ACPI: PCI Interrupt .2[A] -& GSI 47 (level, low) -& IRQ 16
Sep&&4 21:25:37 zcslcg kernel: assign_interrupt_mode Found MSI capability
Sep&&4 21:25:37 zcslcg kernel: ACPI: PCI Interrupt .0[A] -& GSI 16 (level, low) -& IRQ 17
Sep&&4 21:25:37 zcslcg kernel: assign_interrupt_mode Found MSI capability
Sep&&4 21:25:37 zcslcg kernel: ACPI: PCI Interrupt c.0[A] -& GSI 16 (level, low) -& IRQ 17
Sep&&4 21:25:37 zcslcg kernel: assign_interrupt_mode Found MSI capability
Sep&&4 21:25:37 zcslcg kernel: ACPI: PCI Interrupt c.7[D] -& GSI 19 (level, low) -& IRQ 18
Sep&&4 21:25:37 zcslcg kernel: assign_interrupt_mode Found MSI capability
Sep&&4 21:25:37 zcslcg kernel: pci_hotplug: PCI Hot Plug PCI Core version: 0.5
Sep&&4 21:25:37 zcslcg kernel: ACPI: Processor [CP00] (supports 15 throttling states)
Sep&&4 21:25:37 zcslcg kernel: ACPI: Processor [CP01] (supports 15 throttling states)
Sep&&4 21:25:37 zcslcg kernel: ACPI: Processor [CP02] (supports 15 throttling states)
Sep&&4 21:25:37 zcslcg rpc.statd[4856]: statd running as root. chown /var/lib/nfs/statd/sm to choose different user
Sep&&4 21:25:37 zcslcg kernel: ACPI: Processor [CP03] (supports 15 throttling states)
Sep&&4 21:25:37 zcslcg kernel: ACPI: Processor [CP04] (supports 15 throttling states)
Sep&&4 21:25:37 zcslcg kernel: ACPI: Processor [CP05] (supports 15 throttling states)
Sep&&4 21:25:37 zcslcg kernel: ACPI: Processor [CP06] (supports 15 throttling states)
Sep&&4 21:25:37 zcslcg kernel: ACPI: Processor [CP07] (supports 15 throttling states)
Sep&&4 21:25:37 zcslcg kernel: ACPI: Processor [CP08] (supports 15 throttling states)
Sep&&4 21:25:37 zcslcg kernel: ACPI: Processor [CP09] (supports 15 throttling states)
Sep&&4 21:25:37 zcslcg kernel: ACPI: Processor [CP0A] (supports 15 throttling states)
Sep&&4 21:25:37 zcslcg kernel: ACPI: Processor [CP0B] (supports 15 throttling states)
Sep&&4 21:25:37 zcslcg kernel: ACPI: Processor [CP0C] (supports 15 throttling states)
Sep&&4 21:25:37 zcslcg kernel: ACPI: Processor [CP0D] (supports 15 throttling states)
Sep&&4 21:25:37 zcslcg kernel: ACPI: Processor [CP0E] (supports 15 throttling states)
Sep&&4 21:25:37 zcslcg kernel: ACPI: Processor [CP0F] (supports 15 throttling states)
Sep&&4 21:25:37 zcslcg kernel: Real Time Clock Driver v1.12ac
Sep&&4 21:25:37 zcslcg kernel: hpet_acpi_add: no address or irqs in _CRS
Sep&&4 21:25:37 zcslcg kernel: Non-volatile memory driver v1.2
Sep&&4 21:25:37 zcslcg kernel: Linux agpgart interface v0.101 (c) Dave Jones
Sep&&4 21:25:37 zcslcg kernel: brd: module loaded
Sep&&4 21:25:37 zcslcg kernel: Xen virtual console successfully installed as ttyS0
Sep&&4 21:25:37 zcslcg kernel: Event-channel device installed.
Sep&&4 21:25:37 zcslcg kernel: Uniform Multi-Platform E-IDE driver Revision: 7.00alpha2
Sep&&4 21:25:37 zcslcg kernel: ide: Assuming 33MHz system bus speed for PIO override with idebus=xx
Sep&&4 21:25:37 zcslcg kernel: ide-floppy driver 0.99.newide
Sep&&4 21:25:37 zcslcg kernel: usbcore: registered new driver hiddev
Sep&&4 21:25:37 zcslcg kernel: usbcore: registered new driver usbhid
Sep&&4 21:25:37 zcslcg kernel: drivers/usb/input/hid-core.c: v2.6:USB HID core driver
Sep&&4 21:25:37 zcslcg kernel: PNP: No PS/2 controller found. Probing ports directly.
Sep&&4 21:25:37 zcslcg kernel: i8042.c: Can't read CTR while initializing i8042.
Sep&&4 21:25:37 zcslcg kernel: i8042: probe of i8042 failed with error -5
Sep&&4 21:25:37 zcslcg kernel: mice: PS/2 mouse device common for all mice
Sep&&4 21:25:37 zcslcg kernel: md: md driver 0.90.3 MAX_MD_DEVS=256, MD_SB_DISKS=27
Sep&&4 21:25:37 zcslcg kernel: md: bitmap version 4.39
Sep&&4 21:25:37 zcslcg kernel: TCP bic registered
Sep&&4 21:25:37 zcslcg kernel: Initializing IPsec netlink socket
Sep&&4 21:25:37 zcslcg kernel: NET: Registered protocol family 1
Sep&&4 21:25:37 zcslcg kernel: NET: Registered protocol family 17
Sep&&4 21:25:37 zcslcg kernel: Initalizing network drop monitor service
Sep&&4 21:25:37 zcslcg kernel: Write protecting the kernel read-only data: 478k
Sep&&4 21:25:37 zcslcg kernel: GSI 19 sharing vector 0x31 and IRQ 19
Sep&&4 21:25:37 zcslcg kernel: ACPI: PCI Interrupt a.0[B] -& GSI 22 (level, low) -& IRQ 19
Sep&&4 21:25:37 zcslcg kernel: ehci_hcd a.0: EHCI Host Controller
Sep&&4 21:25:37 zcslcg kernel: ehci_hcd a.0: new USB bus registered, assigned bus number 1
Sep&&4 21:25:37 zcslcg kernel: ehci_hcd a.0: debug port 2
Sep&&4 21:25:37 zcslcg kernel: ehci_hcd a.0: irq 19, io mem 0xd1b20000
Sep&&4 21:25:37 zcslcg kernel: ehci_hcd a.0: USB 2.0 started, EHCI 1.00, driver 10 Dec 2004
Sep&&4 21:25:37 zcslcg kernel: usb usb1: configuration #1 chosen from 1 choice
Sep&&4 21:25:37 zcslcg kernel: hub 1-0:1.0: USB hub found
Sep&&4 21:25:37 zcslcg kernel: hub 1-0:1.0: 2 ports detected
Sep&&4 21:25:37 zcslcg kernel: GSI 20 sharing vector 0x39 and IRQ 20
Sep&&4 21:25:37 zcslcg kernel: ACPI: PCI Interrupt d.0[A] -& GSI 20 (level, low) -& IRQ 20
Sep&&4 21:25:37 zcslcg kernel: ehci_hcd d.0: EHCI Host Controller
Sep&&4 21:25:37 zcslcg kernel: ehci_hcd d.0: new USB bus registered, assigned bus number 2
Sep&&4 21:25:37 zcslcg kernel: ehci_hcd d.0: debug port 2
Sep&&4 21:25:37 zcslcg kernel: ehci_hcd d.0: irq 20, io mem 0xd1b10000
Sep&&4 21:25:37 zcslcg kernel: ehci_hcd d.0: USB 2.0 started, EHCI 1.00, driver 10 Dec 2004
Sep&&4 21:25:37 zcslcg kernel: usb usb2: configuration #1 chosen from 1 choice
Sep&&4 21:25:37 zcslcg kernel: hub 2-0:1.0: USB hub found
Sep&&4 21:25:37 zcslcg kernel: hub 2-0:1.0: 2 ports detected
Sep&&4 21:25:37 zcslcg kernel: USB Universal Host Controller Interface driver v3.0
Sep&&4 21:25:37 zcslcg kernel: SCSI subsystem initialized
Sep&&4 21:25:37 zcslcg kernel: GSI 21 sharing vector 0x41 and IRQ 21
Sep&&4 21:25:37 zcslcg kernel: ACPI: PCI Interrupt f.2[B] -& GSI 21 (level, low) -& IRQ 21
Sep&&4 21:25:37 zcslcg kernel: usb 1-1: new high speed USB device using ehci_hcd and address 2
Sep&&4 21:25:37 zcslcg kernel: usb 1-1: configuration #1 chosen from 1 choice
Sep&&4 21:25:37 zcslcg kernel: hub 1-1:1.0: USB hub found
Sep&&4 21:25:37 zcslcg kernel: hub 1-1:1.0: 6 ports detected
Sep&&4 21:25:37 zcslcg kernel: usb 2-1: new high speed USB device using ehci_hcd and address 2
Sep&&4 21:25:37 zcslcg kernel: usb 2-1: configuration #1 chosen from 1 choice
Sep&&4 21:25:37 zcslcg kernel: hub 2-1:1.0: USB hub found
Sep&&4 21:25:37 zcslcg kernel: hub 2-1:1.0: 8 ports detected
Sep&&4 21:25:37 zcslcg kernel: usb 1-1.6: new low speed USB device using ehci_hcd and address 3
Sep&&4 21:25:37 zcslcg kernel: ahci f.2: AHCI
slots 6 ports 6 Gbps 0x3f impl SATA mode
Sep&&4 21:25:37 zcslcg kernel: ahci f.2: flags: 64bit ncq sntf pm led clo pio slum part ems
Sep&&4 21:25:37 zcslcg kernel: scsi0 : ahci
Sep&&4 21:25:37 zcslcg kernel: scsi1 : ahci
Sep&&4 21:25:37 zcslcg kernel: scsi2 : ahci
Sep&&4 21:25:37 zcslcg kernel: scsi3 : ahci
Sep&&4 21:25:37 zcslcg kernel: scsi4 : ahci
Sep&&4 21:25:37 zcslcg kernel: scsi5 : ahci
Sep&&4 21:25:37 zcslcg kernel: ata1: SATA max UDMA/133 abar mb00000 port 0xd1b00100 irq 247
Sep&&4 21:25:37 zcslcg kernel: ata2: SATA max UDMA/133 abar mb00000 port 0xd1b00180 irq 247
Sep&&4 21:25:37 zcslcg kernel: ata3: SATA max UDMA/133 abar mb00000 port 0xd1b00200 irq 247
Sep&&4 21:25:37 zcslcg kernel: ata4: SATA max UDMA/133 abar mb00000 port 0xd1b00280 irq 247
Sep&&4 21:25:37 zcslcg kernel: ata5: SATA max UDMA/133 abar mb00000 port 0xd1b00300 irq 247
Sep&&4 21:25:37 zcslcg kernel: ata6: SATA max UDMA/133 abar mb00000 port 0xd1b00380 irq 247
Sep&&4 21:25:37 zcslcg kernel: usb 1-1.6: configuration #1 chosen from 1 choice
Sep&&4 21:25:37 zcslcg kernel: input: 2.4GHz 2way RF Receiver as /class/input/input0
Sep&&4 21:25:37 zcslcg kernel: input: USB HID v1.00 Keyboard [2.4GHz 2way RF Receiver] on usb-a.0-1.6
Sep&&4 21:25:37 zcslcg kernel: input: 2.4GHz 2way RF Receiver as /class/input/input1
Sep&&4 21:25:37 zcslcg kernel: input,hiddev96: USB HID v1.00 Mouse [2.4GHz 2way RF Receiver] on usb-a.0-1.6
Sep&&4 21:25:37 zcslcg kernel: usb 2-1.4: new full speed USB device using ehci_hcd and address 3
Sep&&4 21:25:37 zcslcg kernel: ata1: SATA link down (SStatus 0 SControl 300)
Sep&&4 21:25:37 zcslcg kernel: usb 2-1.4: configuration #1 chosen from 1 choice
Sep&&4 21:25:37 zcslcg kernel: input: American Megatrends Inc. Virtual Keyboard and Mouse as /class/input/input2
Sep&&4 21:25:37 zcslcg kernel: input: USB HID v1.10 Keyboard [American Megatrends Inc. Virtual Keyboard and Mouse] on usb-d.0-1.4
Sep&&4 21:25:37 zcslcg kernel: input: American Megatrends Inc. Virtual Keyboard and Mouse as /class/input/input3
Sep&&4 21:25:37 zcslcg kernel: input: USB HID v1.10 Mouse [American Megatrends Inc. Virtual Keyboard and Mouse] on usb-d.0-1.4
Sep&&4 21:25:37 zcslcg kernel: usb 2-1.6: new low speed USB device using ehci_hcd and address 4
Sep&&4 21:25:37 zcslcg kernel: ata2: SATA link down (SStatus 0 SControl 300)
Sep&&4 21:25:37 zcslcg kernel: usb 2-1.6: configuration #1 chosen from 1 choice
Sep&&4 21:25:37 zcslcg kernel: input: Generic USB K/B as /class/input/input4
Sep&&4 21:25:37 zcslcg kernel: input: USB HID v1.10 Keyboard [Generic USB K/B] on usb-d.0-1.6
Sep&&4 21:25:37 zcslcg kernel: input: Generic USB K/B as /class/input/input5
Sep&&4 21:25:37 zcslcg kernel: input: USB HID v1.10 Mouse [Generic USB K/B] on usb-d.0-1.6
Sep&&4 21:25:37 zcslcg kernel: ata3: SATA link down (SStatus 0 SControl 300)
Sep&&4 21:25:37 zcslcg kernel: ata4: SATA link down (SStatus 0 SControl 300)
Sep&&4 21:25:37 zcslcg kernel: ata5: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
Sep&&4 21:25:37 zcslcg kernel: ata5.00: ATA-8: STAS, CC1H, max UDMA/133
Sep&&4 21:25:37 zcslcg kernel: ata5.00:
sectors, multi 16: LBA48 NCQ (depth 31/32)
Sep&&4 21:25:37 zcslcg kernel: ata5.00: configured for UDMA/133
Sep&&4 21:25:37 zcslcg kernel: ata6: SATA link down (SStatus 0 SControl 300)
Sep&&4 21:25:37 zcslcg kernel:& &Vendor: ATA& && & Model: STAS& && &Rev: CC1H
Sep&&4 21:25:37 zcslcg kernel:& &Type:& &Direct-Access& && && && && && && & ANSI SCSI revision: 05
Sep&&4 21:25:37 zcslcg kernel: SCSI device sda:
512-byte hdwr sectors (1500302 MB)
Sep&&4 21:25:37 zcslcg kernel: sda: Write Protect is off
Sep&&4 21:25:37 zcslcg kernel: SCSI device sda: drive cache: write back
Sep&&4 21:25:37 zcslcg kernel: SCSI device sda:
512-byte hdwr sectors (1500302 MB)
Sep&&4 21:25:37 zcslcg kernel: sda: Write Protect is off
Sep&&4 21:25:37 zcslcg kernel: SCSI device sda: drive cache: write back
Sep&&4 21:25:37 zcslcg kernel:&&sda: sda1 sda2 sda3 sda4 & sda5 &
Sep&&4 21:25:37 zcslcg kernel: sd 4:0:0:0: Attached scsi disk sda
Sep&&4 21:25:37 zcslcg kernel: device-mapper: uevent: version 1.0.3
Sep&&4 21:25:37 zcslcg kernel: device-mapper: ioctl: 4.11.5-ioctl () initialised:
Sep&&4 21:25:37 zcslcg kernel: device-mapper: dm-raid45: initialized v0.2594l
Sep&&4 21:25:37 zcslcg kernel: EXT3-fs: INFO: recovery required on readonly filesystem.
Sep&&4 21:25:37 zcslcg kernel: EXT3-fs: write access will be enabled during recovery.
Sep&&4 21:25:37 zcslcg kernel: kjournald starting.&&Commit interval 5 seconds
Sep&&4 21:25:37 zcslcg kernel: EXT3-fs: recovery complete.
Sep&&4 21:25:37 zcslcg kernel: EXT3-fs: mounted filesystem with ordered data mode.
Sep&&4 21:25:37 zcslcg kernel: type=1403 audit(.371:2): policy loaded auid= ses=
Sep&&4 21:25:37 zcslcg kernel: Serial:
driver $Revision: 1.90 $ 4 ports, IRQ sharing enabled
Sep&&4 21:25:37 zcslcg kernel: dca service started, version 1.4
Sep&&4 21:25:37 zcslcg kernel: 802.1Q VLAN Support v1.8 Ben Greear &&
Sep&&4 21:25:37 zcslcg kernel: All bugs added by David S. Miller &&
Sep&&4 21:25:37 zcslcg kernel: Intel(R) Gigabit Ethernet Network Driver - version 3.2.10
Sep&&4 21:25:37 zcslcg kernel: Copyright (c)
Intel Corporation.
Sep&&4 21:25:37 zcslcg kernel: ACPI: PCI Interrupt .0[A] -& GSI 16 (level, low) -& IRQ 17
Sep&&4 21:25:37 zcslcg kernel: Serial:
driver $Revision: 1.90 $ 4 ports, IRQ sharing enabled
Sep&&4 21:25:37 zcslcg kernel: input: PC Speaker as /class/input/input6
Sep&&4 21:25:37 zcslcg kernel: igb .0: Intel(R) Gigabit Ethernet Network Connection
Sep&&4 21:25:37 zcslcg kernel: igb .0: eth0: (PCIe:5.0GT/s:Width x4
Sep&&4 21:25:37 zcslcg kernel: ) &6&igb .0: eth0: MAC: 00:1e:67:65:6b:66
Sep&&4 21:25:37 zcslcg kernel: igb .0: eth0: PBA No:
Sep&&4 21:25:37 zcslcg kernel: igb .0: LRO is disabled
Sep&&4 21:25:37 zcslcg kernel: igb .0: Using MSI-X interrupts. 1 rx queue(s), 1 tx queue(s)
Sep&&4 21:25:37 zcslcg kernel: GSI 22 sharing vector 0x61 and IRQ 22
Sep&&4 21:25:37 zcslcg kernel: ACPI: PCI Interrupt .1[B] -& GSI 17 (level, low) -& IRQ 22
Sep&&4 21:25:37 zcslcg kernel: igb .1: Intel(R) Gigabit Ethernet Network Connection
Sep&&4 21:25:37 zcslcg kernel: igb .1: eth1: (PCIe:5.0GT/s:Width x4
Sep&&4 21:25:37 zcslcg kernel: ) &6&igb .1: eth1: MAC: 00:1e:67:65:6b:67
Sep&&4 21:25:37 zcslcg kernel: igb .1: eth1: PBA No:
Sep&&4 21:25:37 zcslcg kernel: sd 4:0:0:0: Attached scsi generic sg0 type 0
Sep&&4 21:25:37 zcslcg kernel: igb .1: LRO is disabled
Sep&&4 21:25:37 zcslcg kernel: igb .1: Using MSI-X interrupts. 1 rx queue(s), 1 tx queue(s)
Sep&&4 21:25:37 zcslcg kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
Sep&&4 21:25:37 zcslcg kernel: floppy0: no floppy controllers found
Sep&&4 21:25:37 zcslcg kernel: lp: driver loaded but no devices found
Sep&&4 21:25:37 zcslcg kernel: NET: Registered protocol family 10
Sep&&4 21:25:37 zcslcg kernel: lo: Disabled Privacy Extensions
Sep&&4 21:25:37 zcslcg kernel: IPv6 over IPv4 tunneling driver
Sep&&4 21:25:37 zcslcg kernel: ACPI: Power Button (FF) [PWRF]
Sep&&4 21:25:37 zcslcg kernel: md: Autodetecting RAID arrays.
Sep&&4 21:25:37 zcslcg kernel: md: autorun ...
Sep&&4 21:25:37 zcslcg kernel: md: ... autorun DONE.
Sep&&4 21:25:37 zcslcg kernel: device-mapper: multipath: version 1.0.5 loaded
Sep&&4 21:25:37 zcslcg kernel: EXT3 FS on sda3, internal journal
Sep&&4 21:25:37 zcslcg kernel: kjournald starting.&&Commit interval 5 seconds
Sep&&4 21:25:37 zcslcg kernel: EXT3 FS on sda2, internal journal
Sep&&4 21:25:37 zcslcg kernel: EXT3-fs: mounted filesystem with ordered data mode.
Sep&&4 21:25:37 zcslcg kernel: kjournald starting.&&Commit interval 5 seconds
Sep&&4 21:25:37 zcslcg kernel: EXT3 FS on sda1, internal journal
Sep&&4 21:25:37 zcslcg kernel: EXT3-fs: mounted filesystem with ordered data mode.
Sep&&4 21:25:37 zcslcg kernel: Adding k swap on /dev/sda5.&&Priority:-1 extents:1 across:k
Sep&&4 21:25:37 zcslcg kernel: IA-32 Microcode Update Driver: v1.14-xen &&
Sep&&4 21:25:37 zcslcg kernel: Loading iSCSI transport class v2.0-871.
Sep&&4 21:25:37 zcslcg kernel: cxgb3i: tag itt 0x1fff, 13 bits, age 0xf, 4 bits.
Sep&&4 21:25:37 zcslcg kernel: iscsi: registered transport (cxgb3i)
Sep&&4 21:25:37 zcslcg kernel: Broadcom NetXtreme II CNIC Driver cnic v2.0.0 (March 21, 2009)
Sep&&4 21:25:37 zcslcg kernel: Broadcom NetXtreme II iSCSI Driver bnx2i v2.0.1e (June 22, 2009)
Sep&&4 21:25:37 zcslcg kernel: iscsi: registered transport (bnx2i)
Sep&&4 21:25:37 zcslcg kernel: iscsi: registered transport (tcp)
Sep&&4 21:25:37 zcslcg kernel: iscsi: registered transport (iser)
Sep&&4 21:25:37 zcslcg kernel: process `sysctl' is using deprecated sysctl (syscall) net.ipv6.neigh.lo.base_reachable_ Use net.ipv6.neigh.lo.base_reachable_time
_ms instead.
Sep&&4 21:25:37 zcslcg kernel: ADDRCONF(NETDEV_UP): eth0: link is not ready
Sep&&4 21:25:37 zcslcg kernel: igb: eth0 NIC Link is Up 100 Mbps Full Duplex, Flow Control: RX/TX
Sep&&4 21:25:37 zcslcg kernel: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
Sep&&4 21:25:37 zcslcg kernel: ADDRCONF(NETDEV_UP): eth1: link is not ready
Sep&&4 21:25:37 zcslcg kernel: igb: eth1 NIC Link is Up 100 Mbps Full Duplex, Flow Control: RX/TX
Sep&&4 21:25:37 zcslcg kernel: ADDRCONF(NETDEV_CHANGE): eth1: link becomes ready
Sep&&4 21:25:38 zcslcg hcid[4916]: Bluetooth HCI daemon
Sep&&4 21:25:38 zcslcg kernel: Bluetooth: Core ver 2.10
Sep&&4 21:25:38 zcslcg kernel: NET: Registered protocol family 31
Sep&&4 21:25:38 zcslcg kernel: Bluetooth: HCI device and connection manager initialized
Sep&&4 21:25:38 zcslcg kernel: Bluetooth: HCI socket layer initialized
Sep&&4 21:25:38 zcslcg hcid[4916]: Register path:/org/bluez fallback:1
Sep&&4 21:25:38 zcslcg kernel: Bluetooth: L2CAP ver 2.8
Sep&&4 21:25:38 zcslcg kernel: Bluetooth: L2CAP socket layer initialized
Sep&&4 21:25:38 zcslcg sdpd[4922]: Bluetooth SDP daemon
Sep&&4 21:25:38 zcslcg kernel: Bluetooth: RFCOMM socket layer initialized
Sep&&4 21:25:38 zcslcg kernel: Bluetooth: RFCOMM TTY layer initialized
Sep&&4 21:25:38 zcslcg kernel: Bluetooth: RFCOMM ver 1.8
Sep&&4 21:25:39 zcslcg pcscd: pcscdaemon.c:507:main() pcsc-lite 1.4.4 daemon ready.
Sep&&4 21:25:39 zcslcg pcscd: hotplug_libusb.c:402:HPEstablishUSBNotifications() Driver ifd-egate.bundle does not support IFD_GENERATE_HOTPLUG. Using active polling
Sep&&4 21:25:39 zcslcg pcscd: hotplug_libusb.c:411:HPEstablishUSBNotifications() Polling forced every 1 second(s)
Sep&&4 21:25:42 zcslcg kernel: Bluetooth: HIDP (Human Interface Emulation) ver 1.1
Sep&&4 21:25:42 zcslcg hidd[5113]: Bluetooth HID daemon
Sep&&4 21:25:43 zcslcg automount[5152]: lookup_read_master: lookup(nisplus): couldn't locate nis+ table auto.master
Sep&&4 21:25:43 zcslcg hpiod: 1.6.7 accepting connections at 2208...
Sep&&4 21:25:45 zcslcg xinetd[5228]: xinetd Version 2.3.14 started with libwrap loadavg labeled-networking options compiled in.
Sep&&4 21:25:45 zcslcg xinetd[5228]: Started working: 0 available services
Sep&&4 21:28:46 zcslcg gpm[5341]: *** info [startup.c(95)]:
Sep&&4 21:28:46 zcslcg gpm[5341]: Started gpm successfully. Entered daemon mode.
Sep&&4 21:28:47 zcslcg avahi-daemon[5460]: Found user 'avahi' (UID 70) and group 'avahi' (GID 70).
Sep&&4 21:28:47 zcslcg avahi-daemon[5460]: Successfully dropped root privileges.
Sep&&4 21:28:47 zcslcg avahi-daemon[5460]: avahi-daemon 0.6.16 starting up.
Sep&&4 21:28:47 zcslcg avahi-daemon[5460]: WARNING: No NSS support for mDNS detected, consider installing nss-mdns!
Sep&&4 21:28:47 zcslcg avahi-daemon[5460]: Successfully called chroot().
Sep&&4 21:28:47 zcslcg avahi-daemon[5460]: Successfully dropped remaining capabilities.
Sep&&4 21:28:47 zcslcg avahi-daemon[5460]: Loading service file /services/sftp-ssh.service.
Sep&&4 21:28:47 zcslcg avahi-daemon[5460]: New relevant interface eth1.IPv6 for mDNS.
Sep&&4 21:28:47 zcslcg avahi-daemon[5460]: Joining mDNS multicast group on interface eth1.IPv6 with address fe80::21e:67ff:fe65:6b67.
Sep&&4 21:28:47 zcslcg avahi-daemon[5460]: New relevant interface eth1.IPv4 for mDNS.
Sep&&4 21:28:47 zcslcg avahi-daemon[5460]: Joining mDNS multicast group on interface eth1.IPv4 with address 210.45.153.95.
Sep&&4 21:28:47 zcslcg avahi-daemon[5460]: New relevant interface eth0.IPv6 for mDNS.
Sep&&4 21:28:47 zcslcg avahi-daemon[5460]: Joining mDNS multicast group on interface eth0.IPv6 with address fe80::21e:67ff:fe65:6b66.
Sep&&4 21:28:47 zcslcg avahi-daemon[5460]: New relevant interface eth0.IPv4 for mDNS.
Sep&&4 21:28:47 zcslcg avahi-daemon[5460]: Joining mDNS multicast group on interface eth0.IPv4 with address 210.45.153.100.
Sep&&4 21:28:47 zcslcg avahi-daemon[5460]: Network interface enumeration completed.
Sep&&4 21:28:47 zcslcg avahi-daemon[5460]: Registering new address record for fe80::21e:67ff:fe65:6b67 on eth1.
Sep&&4 21:28:47 zcslcg avahi-daemon[5460]: Registering new address record for 210.45.153.95 on eth1.
Sep&&4 21:28:47 zcslcg avahi-daemon[5460]: Registering new address record for fe80::21e:67ff:fe65:6b66 on eth0.
Sep&&4 21:28:47 zcslcg avahi-daemon[5460]: Registering new address record for 210.45.153.100 on eth0.
Sep&&4 21:28:47 zcslcg avahi-daemon[5460]: Registering HINFO record with values 'X86_64'/'LINUX'.
Sep&&4 21:28:47 zcslcg kernel: Bridge firewalling registered
Sep&&4 21:28:47 zcslcg avahi-daemon[5460]: New relevant interface virbr0.IPv4 for mDNS.
Sep&&4 21:28:47 zcslcg avahi-daemon[5460]: Joining mDNS multicast group on interface virbr0.IPv4 with address 192.168.122.1.
Sep&&4 21:28:48 zcslcg avahi-daemon[5460]: Registering new address record for 192.168.122.1 on virbr0.
Sep&&4 21:28:48 zcslcg kernel: ip_tables: (C)
Netfilter Core Team
Sep&&4 21:28:48 zcslcg avahi-daemon[5460]: Server startup complete. Host name is zcslcg.local. Local service cookie is .
Sep&&4 21:28:49 zcslcg kernel: Netfilter messages via NETLINK v0.30.
Sep&&4 21:28:49 zcslcg kernel: ip_conntrack version 2.4 (8192 buckets, 65536 max) - 304 bytes per conntrack
Sep&&4 21:28:49 zcslcg avahi-daemon[5460]: Service &SFTP File Transfer on zcslcg& (/services/sftp-ssh.service) successfully established.
Sep&&4 21:28:49 zcslcg avahi-daemon[5460]: New relevant interface virbr0.IPv6 for mDNS.
Sep&&4 21:28:49 zcslcg avahi-daemon[5460]: Joining mDNS multicast group on interface virbr0.IPv6 with address fe80::200:ff:fe00:0.
Sep&&4 21:28:49 zcslcg avahi-daemon[5460]: Registering new address record for fe80::200:ff:fe00:0 on virbr0.
Sep&&4 21:28:50 zcslcg dnsmasq[6011]: started, version 2.45 cachesize 150
Sep&&4 21:28:50 zcslcg dnsmasq[6011]: compile time options: IPv6 GNU-getopt no-ISC-leasefile no-DBus no-I18N TFTP
Sep&&4 21:28:50 zcslcg dnsmasq[6011]: DHCP, IP range 192.168.122.2 -- 192.168.122.254, lease time 1h
Sep&&4 21:28:50 zcslcg dnsmasq[6011]: reading /etc/resolv.conf
Sep&&4 21:28:50 zcslcg dnsmasq[6011]: using nameserver 210.45.144.18#53
Sep&&4 21:28:50 zcslcg dnsmasq[6011]: using nameserver 210.45.144.19#53
Sep&&4 21:28:50 zcslcg dnsmasq[6011]: read /etc/hosts - 1 addresses
Sep&&4 21:28:50 zcslcg xenstored: Checking store ...
Sep&&4 21:28:50 zcslcg xenstored: Checking store complete.
Sep&&4 21:28:52 zcslcg NET[6212]: /sbin/dhclient-script : updated /etc/resolv.conf
Sep&&4 21:28:52 zcslcg avahi-daemon[5460]: Withdrawing address record for 210.45.153.95 on eth1.
Sep&&4 21:28:52 zcslcg avahi-daemon[5460]: Leaving mDNS multicast group on interface eth1.IPv4 with address 210.45.153.95.
Sep&&4 21:28:52 zcslcg avahi-daemon[5460]: iface.c: interface_mdns_mcast_join() called but no local address available.
Sep&&4 21:28:52 zcslcg avahi-daemon[5460]: Interface eth1.IPv4 no longer relevant for mDNS.
Sep&&4 21:28:52 zcslcg avahi-daemon[5460]: Withdrawing address record for fe80::21e:67ff:fe65:6b67 on eth1.
Sep&&4 21:28:52 zcslcg avahi-daemon[5460]: Leaving mDNS multicast group on interface eth1.IPv6 with address fe80::21e:67ff:fe65:6b67.
Sep&&4 21:28:52 zcslcg avahi-daemon[5460]: iface.c: interface_mdns_mcast_join() called but no local address available.
Sep&&4 21:28:52 zcslcg avahi-daemon[5460]: Interface eth1.IPv6 no longer relevant for mDNS.
Sep&&4 21:28:53 zcslcg kernel: device vif0.1 entered promiscuous mode
Sep&&4 21:28:53 zcslcg kernel: xenbr1: topology change detected, propagating
Sep&&4 21:28:53 zcslcg kernel: xenbr1: port 1(vif0.1) entering forwarding state
Sep&&4 21:28:53 zcslcg kernel: ADDRCONF(NETDEV_UP): peth1: link is not ready
Sep&&4 21:28:54 zcslcg kernel: igb: peth1 NIC Link is Up 100 Mbps Full Duplex, Flow Control: RX/TX
Sep&&4 21:28:54 zcslcg kernel: ADDRCONF(NETDEV_CHANGE): peth1: link becomes ready
Sep&&4 21:28:54 zcslcg dnsmasq[6011]: reading /etc/resolv.conf
Sep&&4 21:28:54 zcslcg dnsmasq[6011]: using nameserver 210.45.144.18#53
Sep&&4 21:28:54 zcslcg dnsmasq[6011]: using nameserver 210.45.144.19#53
Sep&&4 21:28:55 zcslcg kernel: device peth1 entered promiscuous mode
Sep&&4 21:28:55 zcslcg kernel: xenbr1: topology change detected, propagating
Sep&&4 21:28:55 zcslcg kernel: xenbr1: port 2(peth1) entering forwarding state
Sep&&4 21:28:55 zcslcg avahi-daemon[5460]: New relevant interface eth1.IPv4 for mDNS.
Sep&&4 21:28:55 zcslcg avahi-daemon[5460]: Joining mDNS multicast group on interface eth1.IPv4 with address 210.45.153.95.
Sep&&4 21:28:55 zcslcg avahi-daemon[5460]: Registering new address record for 210.45.153.95 on eth1.
Sep&&4 21:28:55 zcslcg dhclient: DHCPREQUEST on eth1 to 255.255.255.255 port 67
Sep&&4 21:28:55 zcslcg dhclient: DHCPACK from 210.45.153.126
Sep&&4 21:28:55 zcslcg NET[6395]: /sbin/dhclient-script : updated /etc/resolv.conf
Sep&&4 21:28:55 zcslcg dhclient: bound to 210.45.153.95 -- renewal in 5279 seconds.
Sep&&4 21:28:56 zcslcg avahi-daemon[5460]: New relevant interface eth1.IPv6 for mDNS.
Sep&&4 21:28:56 zcslcg dnsmasq[6011]: reading /etc/resolv.conf
Sep&&4 21:28:56 zcslcg avahi-daemon[5460]: Joining mDNS multicast group on interface eth1.IPv6 with address fe80::21e:67ff:fe65:6b67.
Sep&&4 21:28:56 zcslcg dnsmasq[6011]: using nameserver 210.45.144.18#53
Sep&&4 21:28:56 zcslcg dnsmasq[6011]: using nameserver 210.45.144.19#53
Sep&&4 21:28:56 zcslcg avahi-daemon[5460]: Registering new address record for fe80::21e:67ff:fe65:6b67 on eth1.
Sep&&4 21:28:59 zcslcg modclusterd: startup succeeded
Sep&&4 21:28:59 zcslcg oddjobd: oddjobd startup succeeded
Sep&&4 21:28:59 zcslcg saslauthd[6645]: detach_tty& && &: master pid is: 6645
Sep&&4 21:28:59 zcslcg saslauthd[6645]: ipc_init& && &&&: listening on socket: /var/run/saslauthd/mux
Sep&&4 21:29:00 zcslcg ricci: startup succeeded
Sep&&4 21:29:00 zcslcg smartd[6668]: smartd version 5.38 [x86_64-redhat-linux-gnu] Copyright (C) 2002-8 Bruce Allen
Sep&&4 21:29:00 zcslcg smartd[6668]: Home page is &&
Sep&&4 21:29:00 zcslcg smartd[6668]: Opened configuration file /etc/smartd.conf
Sep&&4 21:29:00 zcslcg smartd[6668]: Configuration file /etc/smartd.conf was parsed, found DEVICESCAN, scanning devices
Sep&&4 21:29:00 zcslcg smartd[6668]: Problem creating device name scan list
Sep&&4 21:29:00 zcslcg smartd[6668]: Device: /dev/sda, opened
Sep&&4 21:29:00 zcslcg smartd[6668]: Device /dev/sda: using '-d sat' for ATA disk behind SAT layer.
Sep&&4 21:29:00 zcslcg smartd[6668]: Device: /dev/sda, opened
Sep&&4 21:29:00 zcslcg smartd[6668]: Device: /dev/sda, not found in smartd database.
Sep&&4 21:29:00 zcslcg smartd[6668]: Device: /dev/sda, is SMART capable. Adding to &monitor& list.
Sep&&4 21:29:00 zcslcg smartd[6668]: Monitoring 0 ATA and 1 SCSI devices
Sep&&4 21:29:00 zcslcg smartd[6668]: Device: /dev/sda, 2 Currently unreadable (pending) sectors
Sep&&4 21:29:00 zcslcg smartd[6668]: Sending warning via mail to root ...
Sep&&4 21:30:00 zcslcg smartd[6668]: Warning via mail to root: successful
Sep&&4 21:30:00 zcslcg smartd[6668]: Device: /dev/sda, 2 Offline uncorrectable sectors
Sep&&4 21:30:00 zcslcg smartd[6668]: Sending warning via mail to root ...
Sep&&4 21:31:01 zcslcg smartd[6668]: Warning via mail to root: successful
Sep&&4 21:31:01 zcslcg smartd[6690]: smartd has fork()ed into background mode. New PID=6690.
Sep&&4 21:31:02 zcslcg pcscd: winscard.c:304:SCardConnect() Reader E-Gate 0 0 Not Found
Sep&&4 21:31:02 zcslcg last message repeated 3 times
Sep&&4 22:01:01 zcslcg smartd[6690]: Device: /dev/sda, 2 Currently unreadable (pending) sectors
Sep&&4 22:01:01 zcslcg smartd[6690]: Device: /dev/sda, 2 Offline uncorrectable sectors
Sep&&4 22:01:48 zcslcg restorecond: Will not restore a file with more than one hard link (/etc/resolv.conf) Invalid argument
Sep&&4 22:29:01 zcslcg : error getting update info: Cannot find a valid baseurl for repo: addons
Sep&&4 22:31:01 zcslcg smartd[6690]: Device: /dev/sda, 2 Currently unreadable (pending) sectors
Sep&&4 22:31:01 zcslcg smartd[6690]: Device: /dev/sda, 2 Offline uncorrectable sectors
Sep&&4 22:40:02 zcslcg dhclient: DHCPREQUEST on eth0 to 210.45.144.111 port 67
Sep&&4 22:40:02 zcslcg dhclient: DHCPACK from 210.45.144.111
Sep&&4 22:40:02 zcslcg dhclient: bound to 210.45.153.100 -- renewal in 4249 seconds.
Sep&&4 22:56:54 zcslcg dhclient: DHCPREQUEST on eth1 to 210.45.144.111 port 67
Sep&&4 22:56:54 zcslcg dhclient: DHCPACK from 210.45.144.111
Sep&&4 22:56:54 zcslcg dhclient: bound to 210.45.153.95 -- renewal in 4897 seconds.
Sep&&4 23:01:01 zcslcg smartd[6690]: Device: /dev/sda, 2 Currently unreadable (pending) sectors
Sep&&4 23:01:01 zcslcg smartd[6690]: Device: /dev/sda, 2 Offline uncorrectable sectors
Sep&&4 23:29:01 zcslcg : error getting update info: Cannot find a valid baseurl for repo: addons
Sep&&4 23:31:01 zcslcg smartd[6690]: Device: /dev/sda, 2 Currently unreadable (pending) sectors
Sep&&4 23:31:01 zcslcg smartd[6690]: Device: /dev/sda, 2 Offline uncorrectable sectors
Sep&&4 23:50:51 zcslcg dhclient: DHCPREQUEST on eth0 to 210.45.144.111 port 67
Sep&&4 23:50:51 zcslcg dhclient: DHCPACK from 210.45.144.111
Sep&&4 23:50:51 zcslcg dhclient: bound to 210.45.153.100 -- renewal in 4254 seconds.
Sep&&5 00:01:01 zcslcg smartd[6690]: Device: /dev/sda, 2 Currently unreadable (pending) sectors
Sep&&5 00:01:01 zcslcg smartd[6690]: Device: /dev/sda, 2 Offline uncorrectable sectors
Sep&&5 00:18:31 zcslcg dhclient: DHCPREQUEST on eth1 to 210.45.144.111 port 67
Sep&&5 00:18:31 zcslcg dhclient: DHCPACK from 210.45.144.111
Sep&&5 00:18:31 zcslcg dhclient: bound to 210.45.153.95 -- renewal in 4872 seconds.
Sep&&5 00:28:54 zcslcg : error getting update info: Cannot find a valid baseurl for repo: addons
Sep&&5 00:31:01 zcslcg smartd[6690]: Device: /dev/sda, 2 Currently unreadable (pending) sectors
Sep&&5 00:31:01 zcslcg smartd[6690]: Device: /dev/sda, 2 Offline uncorrectable sectors
Sep&&5 01:01:01 zcslcg smartd[6690]: Device: /dev/sda, 2 Currently unreadable (pending) sectors
Sep&&5 01:01:01 zcslcg smartd[6690]: Device: /dev/sda, 2 Offline uncorrectable sectors
Sep&&5 01:01:45 zcslcg dhclient: DHCPREQUEST on eth0 to 210.45.144.111 port 67
Sep&&5 01:01:45 zcslcg dhclient: DHCPACK from 210.45.144.111
Sep&&5 01:01:45 zcslcg dhclient: bound to 210.45.153.100 -- renewal in 5161 seconds.
Sep&&5 01:28:54 zcslcg : error getting update info: Cannot find a valid baseurl for repo: addons
Sep&&5 01:31:01 zcslcg smartd[6690]: Device: /dev/sda, 2 Currently unreadable (pending) sectors
Sep&&5 01:31:01 zcslcg smartd[6690]: Device: /dev/sda, 2 Offline uncorrectable sectors
Sep&&5 01:39:43 zcslcg dhclient: DHCPREQUEST on eth1 to 210.45.144.111 port 67
Sep&&5 01:39:43 zcslcg dhclient: DHCPACK from 210.45.144.111
Sep&&5 01:39:43 zcslcg dhclient: bound to 210.45.153.95 -- renewal in 4275 seconds.
Sep&&5 02:01:02 zcslcg smartd[6690]: Device: /dev/sda, 2 Currently unreadable (pending) sectors
Sep&&5 02:01:02 zcslcg smartd[6690]: Device: /dev/sda, 2 Offline uncorrectable sectors
Sep&&5 02:27:46 zcslcg dhclient: DHCPREQUEST on eth0 to 210.45.144.111 port 67
Sep&&5 02:27:46 zcslcg dhclient: DHCPACK from 210.45.144.111
Sep&&5 02:27:46 zcslcg dhclient: bound to 210.45.153.100 -- renewal in 4983 seconds.
Sep&&5 02:28:54 zcslcg : error getting update info: Cannot find a valid baseurl for repo: addons
Sep&&5 02:31:01 zcslcg smartd[6690]: Device: /dev/sda, 2 Currently unreadable (pending) sectors
Sep&&5 02:31:01 zcslcg smartd[6690]: Device: /dev/sda, 2 Offline uncorrectable sectors
Sep&&5 02:50:58 zcslcg dhclient: DHCPREQUEST on eth1 to 210.45.144.111 port 67
Sep&&5 02:50:58 zcslcg dhclient: DHCPACK from 210.45.144.111
Sep&&5 02:50:58 zcslcg dhclient: bound to 210.45.153.95 -- renewal in 4387 seconds.
Sep&&5 03:01:01 zcslcg smartd[6690]: Device: /dev/sda, 2 Currently unreadable (pending) sectors
Sep&&5 03:01:01 zcslcg smartd[6690]: Device: /dev/sda, 2 Offline uncorrectable sectors
Sep&&5 03:28:54 zcslcg : error getting update info: Cannot find a valid baseurl for repo: addons
Sep&&5 03:31:01 zcslcg smartd[6690]: Device: /dev/sda, 2 Currently unreadable (pending) sectors
Sep&&5 03:31:01 zcslcg smartd[6690]: Device: /dev/sda, 2 Offline uncorrectable sectors
Sep&&5 03:50:49 zcslcg dhclient: DHCPREQUEST on eth0 to 210.45.144.111 port 67
Sep&&5 03:50:49 zcslcg dhclient: DHCPACK from 210.45.144.111
Sep&&5 03:50:49 zcslcg dhclient: bound to 210.45.153.100 -- renewal in 4082 seconds.
Sep&&5 04:01:01 zcslcg smartd[6690]: Device: /dev/sda, 2 Currently unreadable (pending) sectors
Sep&&5 04:01:01 zcslcg smartd[6690]: Device: /dev/sda, 2 Offline uncorrectable sectors
Sep&&5 04:04:05 zcslcg dhclient: DHCPREQUEST on eth1 to 210.45.144.111 port 67
Sep&&5 04:04:05 zcslcg dhclient: DHCPACK from 210.45.144.111
Sep&&5 04:04:05 zcslcg dhclient: bound to 210.45.153.95 -- renewal in 4205 seconds.
Sep&&5 04:28:54 zcslcg : error getting update info: Cannot find a valid baseurl for repo: addons
Sep&&5 04:31:01 zcslcg smartd[6690]: Device: /dev/sda, 2 Currently unreadable (pending) sectors
Sep&&5 04:31:01 zcslcg smartd[6690]: Device: /dev/sda, 2 Offline uncorrectable sectors
Sep&&5 04:58:51 zcslcg dhclient: DHCPREQUEST on eth0 to 210.45.144.111 port 67
Sep&&5 04:58:51 zcslcg dhclient: DHCPACK from 210.45.144.111
Sep&&5 04:58:51 zcslcg dhclient: bound to 210.45.153.100 -- renewal in 4734 seconds.
Sep&&5 05:01:01 zcslcg smartd[6690]: Device: /dev/sda, 2 Currently unreadable (pending) sectors
Sep&&5 05:01:01 zcslcg smartd[6690]: Device: /dev/sda, 2 Offline uncorrectable sectors
Sep&&5 05:14:10 zcslcg dhclient: DHCPREQUEST on eth1 to 210.45.144.111 port 67
Sep&&5 05:14:10 zcslcg dhclient: DHCPACK from 210.45.144.111
Sep&&5 05:14:10 zcslcg dhclient: bound to 210.45.153.95 -- renewal in 4543 seconds.
Sep&&5 05:28:55 zcslcg : error getting update info: Cannot find a valid baseurl for repo: addons
Sep&&5 05:31:01 zcslcg smartd[6690]: Device: /dev/sda, 2 Currently unreadable (pending) sectors
Sep&&5 05:31:01 zcslcg smartd[6690]: Device: /dev/sda, 2 Offline uncorrectable sectors
Sep&&5 06:01:01 zcslcg smartd[6690]: Device: /dev/sda, 2 Currently unreadable (pending) sectors
Sep&&5 06:01:01 zcslcg smartd[6690]: Device: /dev/sda, 2 Offline uncorrectable sectors
Sep&&5 06:17:45 zcslcg dhclient: DHCPREQUEST on eth0 to 210.45.144.111 port 67
Sep&&5 06:17:45 zcslcg dhclient: DHCPACK from 210.45.144.111
Sep&&5 06:17:45 zcslcg dhclient: bound to 210.45.153.100 -- renewal in 4545 seconds.
Sep&&5 06:28:55 zcslcg : error getting update info: Cannot find a valid baseurl for repo: addons
Sep&&5 06:29:53 zcslcg dhclient: DHCPREQUEST on eth1 to 210.45.144.111 port 67
Sep&&5 06:29:53 zcslcg dhclient: DHCPACK from 210.45.144.111
Sep&&5 06:29:53 zcslcg dhclient: bound to 210.45.153.95 -- renewal in 4445 seconds.
Sep&&5 06:31:02 zcslcg smartd[6690]: Device: /dev/sda, 2 Currently unreadable (pending) sectors
Sep&&5 06:31:02 zcslcg smartd[6690]: Device: /dev/sda, 2 Offline uncorrectable sectors
Sep&&5 07:01:01 zcslcg smartd[6690]: Device: /dev/sda, 2 Currently unreadable (pending) sectors
Sep&&5 07:01:01 zcslcg smartd[6690]: Device: /dev/sda, 2 Offline uncorrectable sectors
Sep&&5 07:28:55 zcslcg : error getting update info: Cannot find a valid baseurl for repo: addons
Sep&&5 07:31:01 zcslcg smartd[6690]: Device: /dev/sda, 2 Currently unreadable (pending) sectors
Sep&&5 07:31:01 zcslcg smartd[6690]: Device: /dev/sda, 2 Offline uncorrectable sectors
Sep&&5 07:33:30 zcslcg dhclient: DHCPREQUEST on eth0 to 210.45.144.111 port 67
Sep&&5 07:33:30 zcslcg dhclient: DHCPACK from 210.45.144.111
Sep&&5 07:33:30 zcslcg dhclient: bound to 210.45.153.100 -- renewal in 4066 seconds.
Sep&&5 07:43:58 zcslcg dhclient: DHCPREQUEST on eth1 to 210.45.144.111 port 67
Sep&&5 07:43:58 zcslcg dhclient: DHCPACK from 210.45.144.111
Sep&&5 07:43:58 zcslcg dhclient: bound to 210.45.153.95 -- renewal in 4278 seconds.
Sep&&5 08:01:01 zcslcg smartd[6690]: Device: /dev/sda, 2 Currently unreadable (pending) sectors
Sep&&5 08:01:01 zcslcg smartd[6690]: Device: /dev/sda, 2 Offline uncorrectable sectors
Sep&&5 08:04:50 zcslcg avahi-daemon[5460]: Invalid query packet.
Sep&&5 08:05:30 zcslcg last message repeated 14 times
Sep&&5 08:05:30 zcslcg avahi-daemon[5460]: Invalid query packet.
Sep&&5 08:28:55 zcslcg : error getting update info: Cannot find a valid baseurl for repo: addons
优秀技术经理
Sep&&5 07:31:01 zcslcg smartd[6690]: Device: /dev/sda, 2 Currently unreadable (pending) sectors
根据这个日志 貌似是硬盘有问题
助理工程师
楼上的说的对,这个是很可能是硬盘问题。硬盘可能已经有坏道。可以备份数据后找厂商检查下硬盘。切记!!数据很重要!!!
初级工程师
新买的服务器的话,看看硬盘分区有没有对齐,没对齐的话,一个影响性能,一个会发热}

我要回帖

更多关于 loading 换色 下载 的文章

更多推荐

版权声明:文章内容来源于网络,版权归原作者所有,如有侵权请点击这里与我们联系,我们将及时删除。

点击添加站长微信