ZFS Pool and Filesystem Management on CentOS 7
Managing ZFS Storage Pools
ZFS storage pools can be created, destroyed, and modified using the zpool command. Let's start by destroying an existing pool.
zpool destroy storagepool
[root@server ~]# zpool destroy storagepool
[root@server ~]# zpool status
no pools available
Now, let's create a simple mirrored pool. The mirror keyword allows for ...
Posted on Sun, 13 Sep 2026 16:24:13 +0000 by countrydj
OpenStack Glance Image Upload Fails Due to Disk Quota Exceeded
When attempting to upload a image to OpenStack Glance, the operation fails with a "500 Internal Server Error" response. This issue occurs despite the image creation command appearing to succeed initially.
The following command demonstrates the failed upload attempt:
glance image-create --name "CentOS_7.5_238.110" --file Cent ...
Posted on Tue, 11 Aug 2026 16:28:27 +0000 by joesaddigh
Linux LVM Operations: Configuration and Management Guide
Table of Contents
LVM Overview
Core Concepts
Common Operations
Disk Scanning
Creating LVM Volumes
Expanding Logical Volumes
Shrinking Logical Volumes
Swap Partition Expansion
Command Reference
LVM Overview
LVM (Logical Volume Manager) is a storage device management technology that provides logical abstraction layer between physical storage de ...
Posted on Mon, 10 Aug 2026 16:34:36 +0000 by Scooby Doo
Understanding RAID: Redundant Array of Independent Disks
RAID Fundamentals
Core Concepts of RAID
RAID (Redundant Array of Independent Disks) is a data storage technology that combines multiple physical hard drives to achieve improved data transfer rates, expanded storage capacity, and enhanced data redundancy with fault tolerance. The concept originated in 1987 when researchers at UC Berkeley first i ...
Posted on Wed, 05 Aug 2026 16:14:39 +0000 by akeane
Installing and Managing ZFS File Systems on CentOS 7
Creating Storage Pools
The zpool create command allows creating mirrored configurations using multiple drives:
zpool create [pool_name] mirror [device1] [device2] ...
Multiple mirror groups can be established by repeating the mirror keyword:
[root@server ~]# zpool create -f datapool mirror sdc sdd mirror sde sdf
[root@server ~]# zpool status
p ...
Posted on Tue, 04 Aug 2026 16:49:48 +0000 by Litninfingers63
Integrating Huawei Cloud OBS Upload Utility Class
Project startup requries adding configuration file scenning path
import com.example.config.ObsProperties;
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.context.properties.EnableConfigurationP ...
Posted on Sat, 11 Jul 2026 17:23:58 +0000 by phpnoobguy
Understanding Oracle High Water Mark (HWM) and Performance Optimization
Oracle Logical Storage Architecture
Oracle's logical storage management consists of four hierarchical structures: tablespaces, segments, extents, and blocks.
Database Blocks
The block is Oracle's smallest storage unit, typically 8KB in size. All I/O operations occur at the block level. The block size is determined by the DB_BLOCK_SIZE paramete ...
Posted on Thu, 09 Jul 2026 16:14:01 +0000 by ericburnard
GlusterFS Operations and Configuration Guide
Environment Setup
Package Installation
Download RPM packages:
http://bits.gluster.org/pub/gluster/glusterfs/3.4.2/x86_64/
Required packages:
glusterfs-3.4.2-1.el6.x86_64.rpm
glusterfs-api-3.4.2-1.el6.x86_64.rpm
glusterfs-cli-3.4.2-1.el6.x86_64.rpm
glusterfs-fuse-3.4.2-1.el6.x86_64.rpm
glusterfs-libs-3.4.2-1.el6.x86_64.rpm
glusterfs-server-3.4. ...
Posted on Sun, 05 Jul 2026 16:19:02 +0000 by Viola
:Linux Storage Subsystem and File System Management
Storage Interface Technologies
Modern Linux environments interface with persistent storage through various hardware protocols. Parallel interfaces, now largely obsolete, include IDE (also known as ATA) with maximum throughput of 133MB/s, and SCSI variants reaching 320MB/s or 640MB/s. Contemporary systems predominantly employ serial connections: ...
Posted on Tue, 23 Jun 2026 17:17:52 +0000 by joopeon
Understanding the PassThru Mechanism in UEFI Storage Protocols
PassThru Operations in UEFI Storage StackIn UEFI firmware development, the PassThru function serves as a critical interface for storage protocol communication. This function facilitates command execution between the system and storage devices by managing internal register initialization, command dispatch, transfer initiation, and optional compl ...
Posted on Wed, 10 Jun 2026 16:34:22 +0000 by mrwutang