意外停电一次,CentOS启动时报如下错误:
unexpected inconsistency;RUN fsck MANUALLY
An error occurred during the filesystem check
Propping you to shell the system will reboot
when you leave the shell
Give root password for mantennance...
分类:
系统相关 时间:
2015-02-28 14:37:58
阅读次数:
242
Lots of Unixes have some form of 'loopback' mounts, where you can mount a bit of an existing filesystem somewhere else; they're called loopback mounts...
分类:
系统相关 时间:
2015-02-27 16:50:39
阅读次数:
194
使用内置函数获取上传文件后缀名。多方便$string=$_FILES[‘pic‘][‘name‘];echo$fileType=pathinfo($string,PATHINFO_EXTENSION);详细介绍见:http://www.w3school.com.cn/php/func_filesystem_pathinfo.asp
分类:
Web程序 时间:
2015-02-26 00:09:43
阅读次数:
221
虚拟文件系统(Virtual Filesystem)也可称之为虚拟文件系统转换(Virtual Filesystem Switch),是一个内核软件层,用来处理与Unix标准文件系统相关的全部系统调用。其健壮性表如今能为各种文件系统提供一个通用的接口。通用文件系统模型 VFS所隐含的主要思想在于引....
分类:
系统相关 时间:
2015-02-24 18:36:24
阅读次数:
209
//通过FileSystem API读取数据
//这里是以FileSystem以标准输出格式显示Hadoop文件中的文件
package com;
import java.io.InputStream;
import java.net.URI;
import org.apache.hadoop.conf.Configuration;
import org.apa...
分类:
其他好文 时间:
2015-02-22 00:35:57
阅读次数:
177
今天给人示范lvm的设置,结果在后来修改/etc/fstab的时候不小心写错了,然后重启系统的时候就进入了repair filesystem模式,这个模式下是无法通过vi来修改/etc/fstab的,而且该模式下也无法通过touch来创建文件,所有系统都是只读的,那么我们该怎么办呢?
我们可以通过执行 #mount -o remount,rw / 来让根目录可以...
分类:
其他好文 时间:
2015-02-17 23:37:07
阅读次数:
263
插入U盘之后,按照下面的步骤: # fdisk -l /dev/sd* 通常这一步就能找到U盘,如果U盘有指示灯也会亮,表示被找到。 #mount –t ntfs /dev/sdb1 /mnt/ mount: unknown filesystem type ‘ntfs’ 这是由于CentOS...
分类:
Web程序 时间:
2015-02-17 23:32:38
阅读次数:
199
在centos系统上自带的内存文件系统。这个tmpfs是temporary file system的意思。一、使用命令 df -h 查看tmpfs是否正在运行。Filesystem Size Used Avail Use% Mounted on/dev/mapper/VolG...
分类:
系统相关 时间:
2015-02-12 18:21:24
阅读次数:
198
df命令英文原意:disk free命令路径:/bin/df说明:显示硬盘分区的使用情况选项:-a 显示所有的文件系统,包括虚拟的-h 以人性化的方式显示单位-T 显示文件系统的类型示例:df -h一共六列:第一列 Filesystem 表示的是文件系统第二列 Size 文件系统的容量第三列 Use...
分类:
其他好文 时间:
2015-02-11 00:31:04
阅读次数:
186
Most assets in Unity are combined into the project when it is built. However, it is sometimes useful to place files into the normal filesystem on the ...
分类:
其他好文 时间:
2015-02-10 11:10:42
阅读次数:
254