- 浏览: 1318360 次
- 性别:
- 来自: 广州
文章分类
- 全部博客 (351)
- Java General (37)
- .net General (2)
- Linux Toy (55)
- Oracle (81)
- Mysql (11)
- Programer Career (12)
- Oh, my living ! (2)
- Shell Script (8)
- Web Service (0)
- Linux Server (22)
- Php/Python/Perl (3P) (2)
- Javascript General (5)
- Saleforce Apex Dev (2)
- Web General (5)
- Xen & VM tech. (17)
- PSP (13)
- OpenSolaris (34)
- php (1)
- RAI/flex/action script (16)
- asterisk/CTI (7)
- 交互设计 (6)
- English (3)
- Lucene (1)
最新评论
-
GuolinLee:
markmark
JVM调优总结 -Xms -Xmx -Xmn -Xss -
di1984HIT:
写的太好啊。
JVM调优总结 -Xms -Xmx -Xmn -Xss -
javajdbc:
javajdbc 写道
JVM调优总结 -Xms -Xmx -Xmn -Xss -
javajdbc:
...
JVM调优总结 -Xms -Xmx -Xmn -Xss -
alvin198761:
非常感谢,国外的被封杀了,你这里还有一份
How to Convert An Image-Based Guest To An LVM-Based Guest
今天,不得不面对lvm了,毕竞是公司用的.
================================================================= 创建LVM 1、首先,我们要先创建新磁盘分区 #fdisk /dev/hda 2、激活刚创建好的分区 #partprobe
1、创建1个500MB分区(hda12),然后在fdisk命令下输入t,选择刚创建好的分区,输入8e,将刚创建好的分区转换为8e格式。输入w保存退出 #fdisk /dev/had 总结LVM几个高级命令:lvchange、vgexport/vgimport、vgcfgbackup/vgcfgrestore =============================================================== |
----
So you have an LVM based file system that needs extended? Now a days this can be done pretty quickly with a few commands. The following will walk you through a basic online resize of an ext3 and reiserfs based filesystem. Keep in mind, if you’re dealing with critical production data of any type, you probably should resize those offline, and during a scheduled maintenance window as a safety measure.
#df -k /mnt/test
Filesystem 1K-blocks Used Available Use% Mounted on
/dev/mapper/testvg-test
2097084 1760768 336316 84% /mnt/test
When resizing volumes, you have to keep in mind that the file system also has to be made aware of the new volume size. A common misconception is that you can resize the LVM device and the file system will automatically grow with it, not the case in ext3 and reiserfs that I’m aware of.
The test volume we’re messing with is nearly full, so we will add another 1GB to this. We’ll start off first by extending the logical volume using the ‘lvextend’ command.
#lvextend
Please specify either size or extents (not both)
lvextend: Add space to a logical volumelvextend
[-A|--autobackup y|n]
[--alloc AllocationPolicy]
[-d|--debug]
[-h|--help]
[-i|--stripes Stripes [-I|--stripesize StripeSize]]
{-l|–extents [+]LogicalExtentsNumber[%{VG|FREE}] |
-L|–size [+]LogicalVolumeSize[kKmMgGtTpPeE]}
[-m|--mirrors Mirrors]
[-n|--nofsck]
[-r|--resizefs]
[-t|--test]
[--type VolumeType]
[-v|--verbose]
[--version]
LogicalVolume[Path] [ PhysicalVolumePath... ]#lvextend -L+1G /dev/testvg/test
Extending logical volume test to 3.00 GB
Logical volume test successfully resized
#lvs /dev/testvg/test
LV VG Attr LSize Origin Snap% Move Log Copy%
test testvg -wi-ao 3.00G
#
#df -h /mnt/test
Filesystem Size Used Avail Use% Mounted on
/dev/mapper/testvg-test
2.0G 1.7G 329M 84% /mnt/test
#
Note the file system size remains at 2GB. Once the logical volume is extended, we will have to figure out what type of file system this is. You can run the following to determine this:
#mount | grep /mnt/test
/dev/mapper/testvg-test on /mnt/test type reiserfs (rw)
So we’re dealing with reiserfs.
It may also be smart to run an fsck at this point, depending on whether or not you can take the volume offline. Since this is test data, I’ll ignore the fsck and go ahead and resize the file system while it’s online. For reiserfs, this is done using the ‘resize_reiserfs’ command. You can either specify the size of let the command figure it out, and grow to the full extent of the volume. I’ll let it figure it out.
#resize_reiserfs /dev/testvg/test
resize_reiserfs 3.6.19 (2003 www.namesys.com)resize_reiserfs: On-line resizing finished successfully.
#df -h /mnt/test/
Filesystem Size Used Avail Use% Mounted on
/dev/mapper/testvg-test
3.0G 1.7G 1.4G 56% /mnt/test
#
That’s it… Pretty tough huh?
Now for ext3, we’ll use the same volume.
#df -h /mnt/test
Filesystem Size Used Avail Use% Mounted on
/dev/mapper/testvg-test
2.0G 68M 1.9G 4% /mnt/test
#mount | grep /mnt/test
/dev/mapper/testvg-test on /mnt/test type ext3 (rw)
#
#lvextend -L+1G /dev/testvg/test
Extending logical volume test to 3.00 GB
Logical volume test successfully resized
#!df
df -h /mnt/test
Filesystem Size Used Avail Use% Mounted on
/dev/mapper/testvg-test
2.0G 68M 1.9G 4% /mnt/test
#
You’ll resize ext3 using the ‘resize2fs’ command as shown. Pretty similar to reiserfs.
#resize2fs
resize2fs 1.40.2 (12-Jul-2007)
Usage: resize2fs [-d debug_flags] [-f] [-F] [-p] device [new_size]#resize2fs /dev/testvg/test
resize2fs 1.40.2 (12-Jul-2007)
Filesystem at /dev/testvg/test is mounted on /mnt/test; on-line resizing required
old desc_blocks = 1, new_desc_blocks = 1
Performing an on-line resize of /dev/testvg/test to 786432 (4k) blocks.
The filesystem on /dev/testvg/test is now 786432 blocks long.#!df
df -h /mnt/test
Filesystem Size Used Avail Use% Mounted on
/dev/mapper/testvg-test
3.0G 68M 2.8G 3% /mnt/test
#
发表评论
-
Cygwin 中 xwin 的启动参数
2010-11-20 14:21 2746不知为何现在装的cygwin xwin没有startxwin ... -
三种数据库,取随机记录的方法
2010-09-16 12:23 1243mysql:select * from tablename o ... -
用 grep 恢复误删的文本文件
2010-08-26 14:34 2010作为长期的电脑使用者,肯定会有误删文件的经历,在 Mac ... -
使用TELNET手工操作 SMTP/POP 收发邮件
2010-08-09 21:44 2477说明:手工录入的用蓝色字体表示,#后的为注释,不可录入。= ... -
关于 port forward 的一个实例
2010-07-07 09:25 1583tomcat 服务于 8080端口,但不想在前面加 apach ... -
ubuntu 半虚拟化domU的安装方法
2010-06-05 21:12 2510ubuntu还没有通过http://方法安装,不像redh ... -
mount 硬盘镜像的一般问题。
2010-06-01 12:33 25851. 要搞清楚文件是 是由整个分区来的,还是整个硬盘来的 ... -
通过 ulimit 改善系统性能
2010-05-22 09:07 1388http://www.ibm.com/developer ... -
mencoder来提取电影mp3文件
2009-12-16 21:45 2064假如在欣赏电影过程中出现了一段美妙的插曲(特别是印度电影,一般 ... -
netcat usage sample
2009-11-28 18:33 1286This page documents various t ... -
dd 建立一个没有内容的大文件
2009-11-22 09:36 1987dd if=/dev/zero of=sparse-file ... -
Mounting a filesystem located on a partition of an image of a disk
2009-10-24 17:52 1644Mou ... -
将光盘镜像CentOS-5.3-i386-bin-DVD.iso设置成为yum源
2009-09-28 07:43 3739#mkdir /centos5.3.dvd (随便起个文件夹名 ... -
拷贝指定的文件出来但保持目录结构
2009-09-18 08:39 3075抽取当前目录以下的所有logo1.* 或 logo2.* 到 ... -
定制 bt4 frefinal live cd ( ubuntu)
2009-08-21 10:01 2608Customising the BackTrack 4 Pre ... -
linux 下查看 iso 文件信息
2009-08-21 09:55 2281root@feng-desktop:/media/sda5/i ... -
copy file over ssh with tar
2009-08-15 08:57 1450tar is usually used for achiv ... -
copy file using cpio
2009-08-11 17:38 1469http://bradthemad.org/tech/note ... -
copy file using tar
2009-08-11 17:22 1192We assume /source/dir is a file ... -
VLC webcam 准实时视频
2008-10-28 23:19 2426#!/bin/bash file=/root/video_$( ...
相关推荐
### LVM 学习笔记详解 #### 一、LVM与RAID基础知识 **LVM (Logical Volume Manager)** 是一种用于Linux系统中的存储管理技术,它提供了比传统分区方案更灵活的数据存储方式。通过LVM,用户可以创建逻辑卷(Logical ...
LVM(Logical Volume Manager)是Linux操作系统中的一种高级磁盘管理技术,由Heinz Mauelshagen在Linux 2.4内核上实现。LVM的主要目标是提供磁盘空间的动态管理,通过将一个或多个硬盘分区逻辑地集合起来,形成一个...
根据提供的文件信息,我们可以归纳出关于 Linux 下 LVM 和 RAID 的一些关键知识点: ### LVM (Logical Volume Manager) #### 1. 基本概念 - **PV (Physical Volume)**:物理卷,指的是磁盘分区或者整个物理磁盘。 ...
### LVM(Logical Volume Manager)实验笔记 #### 一、什么是LVM? LVM(Logical Volume Manager),即逻辑卷管理器,是一种用于提高传统磁盘管理效率的技术方案。它允许用户更加灵活地管理存储资源,例如动态扩展...
与可用的命令行选项相比,它的功能有一些限制。 例如,尚未在api中实现对物理卷和逻辑卷的调整大小。 尽管如此,仍计划在不久的将来做出贡献。 这是使用LVM 2.2进行测试的第一个版本,请在下面的链接中或通过电子...
RHCE课程-RH131Linux管理笔记七-Linux分区,格式化,SWAP,LVM,软件RAID的创建 12月27日课程 8、自动挂载和NIS服务器及客户端配置 9、软件RIDE及XEN虚拟机 RHCE课程-RH131Linux管理笔记八-安装和管理XEN虚拟机 1月...
逻辑卷管理通过将底层物理硬盘抽象封装起来,以逻辑卷的形式表现给上层系统,逻辑卷的大小可以动态调整,而且 ... 使用 LVM 的步骤: a. 物理硬盘格式化为 PV(物理卷),底层空间被分做每个4M大小的PE。
11. **磁盘管理**:LVM(Logical Volume Manager)的配置,RAID(Redundant Array of Independent Disks)技术,以及文件系统挂载与卸载。 12. **安全与防火墙**:SELinux(Security-Enhanced Linux)的使用,以及...
### LabVIEW学习笔记知识点梳理 #### 一、调试技巧与数据监测 - **探针工具**: 在调试过程中,可以通过右键菜单中的`probe`和`custom probe`功能来设置探针,用于实时监测数据流。这有助于理解数据如何在各个节点...
本笔记旨在帮助你从基础到进阶,全面掌握Linux操作系统的各项技能,为后续的渗透测试等高级技术学习打下坚实基础。 首先,RHCSA认证主要涵盖以下几个核心知识点: 1. **系统安装与配置**:包括规划和执行Linux系统...
标题 "LVM_assignment" 暗示这可能是一个关于Linux逻辑卷管理(LVM, Logical Volume Manager)的作业或项目,结合描述中的“Jupyter + R”和“RStudio”,我们可以推断这是一个使用数据分析工具R,通过Jupyter ...
同时,理解LVM(Logical Volume Manager)逻辑卷管理器的优势和用法,能够提供更灵活的磁盘管理和扩展性。 在安全性方面,Linux提供了防火墙(如`iptables`或`firewalld`)和SELinux(Security-Enhanced Linux)等...
2. **高级存储管理**:涉及LVM(逻辑卷管理器)、RAID(冗余磁盘阵列)和文件系统如ext4、XFS的使用和优化,了解存储性能和数据保护策略。 3. **系统调优**:包括内核参数调整、内存管理优化、CPU调度策略等,以...
linux全套学习笔记_博雅运维,适合linux初学者,包含用户管理,进程管理,分区管理,vim,磁盘阵列,LVM逻辑卷,dns,ftp,nfs,samba,dhcp,apache,mysql,php,nginx,iptables,selinux,lamp,lnmp架构,phpmyadmin,...
这份笔记详细地介绍了Linux系统管理和操作的一些核心概念,对于学习和掌握Linux基础知识非常有帮助。同时,作者提醒读者根据实际环境调整参数,并鼓励指出疏漏和错误以便改正。虽然笔记中可能并未涵盖所有Linux知识...
本文档旨在为读者提供 RAID 基础知识的详细笔记,涵盖 RAID 的介绍、 RAID 级别、 RAID 技术分类、 LVM 和 RAID 的区别、使用 RAID 的好处、各级 RAID 的详细介绍等方面的内容。 RAID 基础知识 RAID 是廉价冗余...
【Linux基础篇】 Linux是开源的操作系统,深受...总之,这份华为工程师的Linux学习笔记全面覆盖了从基础到高级的Linux知识体系,适合从零开始学习Linux的人员,也能为有一定经验的工程师提供深入学习和提升的机会。
以下是根据标题“磁盘管理学习笔记精简”和描述“磁盘管理”所涉及的一些核心知识点的详细解释。 1. **分区与文件系统**: - **分区**:在Linux中,磁盘通常被划分为不同的逻辑区域,称为分区。常见的分区类型有主...
文件系统是Linux的核心部分,这部分可能讲解了不同的文件系统类型(如EXT4, XFS, Btrfs等),挂载和卸载操作,以及磁盘分区和LVM(逻辑卷管理)的概念。 4. **网络配置与管理(45-51.docx, 58-63.docx, 64-68.docx...