Questions tagged [partition]

A partition is a means of logically dividing a computing resource (most frequently disk storage)

Partitions are a way to logically divide a computing resource. Most frequently this is applied to MBR Disk storage. For instance a hard drive or other storage media so that each partition is logically independent of one another. This can be done for a variety of reasons including security, separating multiple operating systems, utilizing multiple file systems, or other benefits realized by the logical separation.

1109 questions
5
votes
2 answers

Repurposed disk - Linux blkid command returns incorrect information

I'm working with an SSD drive removed from a VMware ESXi installation. I'm trying to reuse the disk in an existing Linux installation (CentOS 6.2). The drive sits behind an HP Smart Array P410 RAID controller and is configured as a separate logical…
ewwhite
  • 197,159
  • 92
  • 443
  • 809
5
votes
3 answers

How to mount a LVM partition on Ubuntu?

#fdisk -l /dev/sdb1 * 1 9702 77931283+ 8e Linux LVM I tried the following command: #mkdir /media/backup #mount /dev/sdb1 /media/backup mount: unknown file system 'LVM2_member' How do I mount it?
Jader Dias
  • 4,705
  • 19
  • 50
  • 51
5
votes
1 answer

Filesystem and partitioning for SSDs on Linux

What are the best practices for using an SSD on a Linux workstation? Specifically, I'm interested in: What mounts I should put on the SSD and what I should keep on my HDD What filesystem I should use for what I do put on the SSD Whether it's okay…
jade
  • 890
  • 5
  • 15
5
votes
4 answers

How to resize a HFS+ Partition?

I am about to upgrade the hard disk of my MacBook. (From 60GB to 320GB, which I know is below the limit of 500GB). I was both able to install an OS X on the new drive and also to transfer the old hard disks partition to the new one with a sysresccd…
lImbus
  • 497
  • 4
  • 13
5
votes
3 answers

New Windows 2008 Disk Partitioning Offset question - should I worry about it?

We're about to hardware upgrade our exisiting Sql 2008 Server. So, I'm checking out some best practices with regards to hardware, like .. RAID levels for the HD and making sure the TempDB is on a different disk than the DB's, etc. I then stumbled…
Pure.Krome
  • 6,508
  • 18
  • 73
  • 87
5
votes
2 answers

Should swap space be in a logical volume, or directly on disk?

What are the benefits of putting swap into a logical volume over using direct disk access? For example, with a fresh, default install of RHEL5 or 6, a volume group is created on the default disk along with one other small non-logical partition (for…
warren
  • 18,369
  • 23
  • 84
  • 135
5
votes
5 answers

PostgreSQL High Performance Setup

I am setting up a server with the following specs: * Qty 4 Processors (AMD Opterons with 12 cores each) * 32 GB Memory * Qty 8 HDD (15K SAS Dual Port) * CentOS 5.5 * JBoss * PostgreSQL It is likely that at a later point I will separate the…
5
votes
4 answers

mdadm: Swapping out small hard drives for bigger ones in a RAID5, How to partition?

So I got the gist of swapping out smaller hard drivers for bigger ones in an MDADM RAID5: Fail and remove one drive. mdadm -f /dev/md0 /dev/sdd1 mdadm -r /dev/md0 /dev/sdd1 Shutdown, swap the hard drive, partition and add back to array mdadm --add…
JD Frias
  • 153
  • 1
  • 1
  • 7
5
votes
5 answers

How can I resize a LVM partition in Red Hat without lose of data?

My partition detail is like this /dev/mapper/VolGroup00-LogVol00 57G 8.8G 46G 17% / /dev/mapper/VolGroup00-LogVol05 259G 7.0G 239G 3% /home /dev/mapper/VolGroup00-LogVol02 …
Charly
  • 321
  • 4
  • 6
  • 16
5
votes
4 answers

In linux, how can I determine what processes are using a block device?

I have a disk in a server that I'm migrating to a LVM volume group. Previously, it was using traditional DOS-disk partitioning, hdb[1-5]. I've unmounted every filesystem from hdb, shut off swap using hdb, removed a smaller VG on the device already,…
Jason
  • 1,885
  • 1
  • 13
  • 12
5
votes
4 answers

How to change the file system of a partition in a RAID 1?

First, sorry if the question has already been asked and correctly answered, I did not find anything that satisfies me. I rent a dedicated machine in a datacenter, the machine run with a Debian 10 and has two drives in RAID 1, there are 3 partitions:…
Taine
  • 51
  • 1
  • 2
5
votes
1 answer

Ubuntu server only uses a part of the available disk space

So i have a 240 GB ssd in my server, but i notized when i login it always shows me Usage of /: 56.6% of 108.79GB So i started to look a bit deeper when i use lsblk the following is printed out: NAME MAJ:MIN RM SIZE…
Pascal Heßler
  • 53
  • 1
  • 1
  • 4
4
votes
1 answer

Restoring a smaller partition image to larger partition using dd

I recently backed up an 11GB ext4 partition to a file using dd, repartitioned, and restored the file to a 40GB partition. parted now shows the partition as 40GB, Nautilus reads it as 11GB, and both list the drive as only having 2GB free. Is this a…
user30569
4
votes
0 answers

Format new parition of drive with xfs version 4 in Linux

I am working on an arcade machine and it cannot be updated unfortunately. A drive has corrupted data on it and in order to delete it I need to re-partition that drive. (I know it's the data and not the drive because I have used dd to clone the…
Case
  • 311
  • 1
  • 4
  • 14
4
votes
2 answers

Does the ReFS filesystem reserve space for itself?

I recently formatted a single disk from the line of new 14TB Seagates on Windows 10 with ReFS, with a 4K block size, to use the full capacity available and noticed that out of the approximately 12.7TB it presents as usable that it already reports…