LVM keeping harddisk awake?Why is OS constantly writing to disk (ext4) on a Ubuntu 14.04 machine? Is it normal?after adding one more physical volume and enlarging logical volume, grub failsLVM - failed to install bootloaderHow to recover a physical volume in LVM that shows as an unknown device?How to mount sdb directly or using LVM partitions on sda?Lost space in LVMXen domU not resizing diskLVM metadata missing, trying to recreate raid 1 with LVMWindows overrode a LVM pv metadataMounting a 4tb lvm in Centos 7 keeps saying not enough space on deviceOptimal LVM Setup to Keep Adding Space to Single Mountpoint

At which point does a character regain all their Hit Dice?

Is this Spell Mimic feat balanced?

How can I get through very long and very dry, but also very useful technical documents when learning a new tool?

Hide Select Output from T-SQL

Short story about space worker geeks who zone out by 'listening' to radiation from stars

apt-get update is failing in debian

What does this 7 mean above the f flat

How could Frankenstein get the parts for his _second_ creature?

Opposite of a diet

Using parameter substitution on a Bash array

Everything Bob says is false. How does he get people to trust him?

Where in the Bible does the greeting ("Dominus Vobiscum") used at Mass come from?

The baby cries all morning

What to do with wrong results in talks?

Can a monster with multiattack use this ability if they are missing a limb?

How does residential electricity work?

How do I keep an essay about "feeling flat" from feeling flat?

Do there exist finite commutative rings with identity that are not Bézout rings?

Was Spock the First Vulcan in Starfleet?

How was Earth single-handedly capable of creating 3 of the 4 gods of chaos?

Teaching indefinite integrals that require special-casing

Is there any reason not to eat food that's been dropped on the surface of the moon?

There is only s̶i̶x̶t̶y one place he can be

Bash method for viewing beginning and end of file



LVM keeping harddisk awake?


Why is OS constantly writing to disk (ext4) on a Ubuntu 14.04 machine? Is it normal?after adding one more physical volume and enlarging logical volume, grub failsLVM - failed to install bootloaderHow to recover a physical volume in LVM that shows as an unknown device?How to mount sdb directly or using LVM partitions on sda?Lost space in LVMXen domU not resizing diskLVM metadata missing, trying to recreate raid 1 with LVMWindows overrode a LVM pv metadataMounting a 4tb lvm in Centos 7 keeps saying not enough space on deviceOptimal LVM Setup to Keep Adding Space to Single Mountpoint













2















I have a Lenovo W530 running Arch with kernel 3.79 (for bumblebee) and laptop-mode is configured properly and running. It has one SSD (sdb) and one harddisk (sdb). The sdb disk has two lvm-volumes: one is storage and one is swap.



The problem is that the harddisk keeps getting polled and lsof outputs nothing regarding the lvm volumes when these are mounted. When I mount sdb2 (a NTFS partition) the hd spins down correctly; It seems to have something to do with LVM.



All worked fine (i.e. the harddisk spinned down properly) just before I removed two lvm volumes and replaced them with a single volume (lv_storage). I removed them using lvremove and added one using lvcreate.



The harddisk-activity-indication light blinks every second or so. Hdparm can spindown the harddisk (until it gets polled again).



EDIT: problem seems to be the jdb2 journaling service. IOtop reveals that the process ([jdb2/dm-1-8]) is keeping the hd awake. However I only have dm-0(lv_swap) and dm-1 (lv_filestorage) and there are no files residing on the lv_storage volume.



Data:



lsblck ->



NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT
sda 8:0 0 59.6G 0 disk
|-sda1 8:1 0 300M 0 part
|-sda2 8:2 0 100M 0 part /boot/efi
|-sda3 8:3 0 128M 0 part
|-sda4 8:4 0 28.8G 0 part
`-sda5 8:5 0 30.3G 0 part /
sdb 8:16 0 465.8G 0 disk
|-sdb1 8:17 0 195.3G 0 part
| |-VolGroup01-lv_swap (dm-0) 254:0 0 8G 0 lvm [SWAP]
| |-VolGroup01-lv_storage (dm-1) 254:1 0 150G 0 lvm
| `-VolGroup01-lv_test (dm-2) 254:2 0 1G 0 lvm
`-sdb2 8:18 0 270.5G 0 part


uname -a ->



Linux w530 3.7.9-2-ARCH #1 SMP PREEMPT Mon Feb 25 12:04:25 CET 2013 x86_64 GNU/Linux


lvdisplay ->



--- Logical volume ---
LV Path /dev/VolGroup01/lv_swap
LV Name lv_swap
VG Name VolGroup01
LV UUID HoElDQ-OZ3z-XkGX-dBE1-qVnD-NEgB-4G7D7S
LV Write Access read/write
LV Creation host, time archiso, 2013-02-27 20:17:33 +0000
LV Status available
# open 2
LV Size 8.00 GiB
Current LE 2048
Segments 1
Allocation contiguous
Read ahead sectors auto
- currently set to 256
Block device 254:0

--- Logical volume ---
LV Path /dev/VolGroup01/lv_storage
LV Name lv_storage
VG Name VolGroup01
LV UUID iIvwkz-1bph-pCHs-8QOw-F0J9-0RRA-ea783w
LV Write Access read/write
LV Creation host, time archiso, 2013-03-06 03:10:55 +0000
LV Status available
# open 0
LV Size 150.00 GiB
Current LE 38400
Segments 1
Allocation inherit
Read ahead sectors auto
- currently set to 256
Block device 254:1


/etc/fstab ->



# /dev/mapper/VolGroup01-lv_storage
UUID=1b01a1dd-6ea9-484c-933c-e581767ad4b9 /mnt/storage ext4
rw,relatime,data=ordered 0 2

# /dev/mapper/VolGroup01-lv_swap
UUID=66afafb1-5f90-41c0-967e-343a8d269581 none swap
defaults 0 0









share|improve this question
















bumped to the homepage by Community yesterday


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.










  • 1





    I would blame the filesystem first. What filesystems do you have on the hard disk? Also, if you've activated that swap area, it's likely to be used.

    – Gilles
    Mar 6 '13 at 23:31











  • All of the used filesystems are ext4. The swap has been activated (which is stored on the hd). The swap doesnt keep the hd awake (mind that the system currently has 8GB). It really must have something to do with the fact that I removed two volumes, and added one. I'll edit the post for clarity

    – BTZ
    Mar 6 '13 at 23:45












  • Do iotop and powertop show anything useful?

    – Gilles
    Mar 6 '13 at 23:48











  • Never used iotop: thanks! And yes it did: jdb2 seems to be the problem. Apparently it wants to do some journalling stuff every second -> why?

    – BTZ
    Mar 7 '13 at 0:03












  • Sollution found! Will post it within the hour because StackExchange wont allow my to answer my own question within 8 hours -> it had to do with jdb2 not finishing the initial build up of journals and a low commit time. Thanks for the tip on iotop!

    – BTZ
    Mar 7 '13 at 0:36















2















I have a Lenovo W530 running Arch with kernel 3.79 (for bumblebee) and laptop-mode is configured properly and running. It has one SSD (sdb) and one harddisk (sdb). The sdb disk has two lvm-volumes: one is storage and one is swap.



The problem is that the harddisk keeps getting polled and lsof outputs nothing regarding the lvm volumes when these are mounted. When I mount sdb2 (a NTFS partition) the hd spins down correctly; It seems to have something to do with LVM.



All worked fine (i.e. the harddisk spinned down properly) just before I removed two lvm volumes and replaced them with a single volume (lv_storage). I removed them using lvremove and added one using lvcreate.



The harddisk-activity-indication light blinks every second or so. Hdparm can spindown the harddisk (until it gets polled again).



EDIT: problem seems to be the jdb2 journaling service. IOtop reveals that the process ([jdb2/dm-1-8]) is keeping the hd awake. However I only have dm-0(lv_swap) and dm-1 (lv_filestorage) and there are no files residing on the lv_storage volume.



Data:



lsblck ->



NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT
sda 8:0 0 59.6G 0 disk
|-sda1 8:1 0 300M 0 part
|-sda2 8:2 0 100M 0 part /boot/efi
|-sda3 8:3 0 128M 0 part
|-sda4 8:4 0 28.8G 0 part
`-sda5 8:5 0 30.3G 0 part /
sdb 8:16 0 465.8G 0 disk
|-sdb1 8:17 0 195.3G 0 part
| |-VolGroup01-lv_swap (dm-0) 254:0 0 8G 0 lvm [SWAP]
| |-VolGroup01-lv_storage (dm-1) 254:1 0 150G 0 lvm
| `-VolGroup01-lv_test (dm-2) 254:2 0 1G 0 lvm
`-sdb2 8:18 0 270.5G 0 part


uname -a ->



Linux w530 3.7.9-2-ARCH #1 SMP PREEMPT Mon Feb 25 12:04:25 CET 2013 x86_64 GNU/Linux


lvdisplay ->



--- Logical volume ---
LV Path /dev/VolGroup01/lv_swap
LV Name lv_swap
VG Name VolGroup01
LV UUID HoElDQ-OZ3z-XkGX-dBE1-qVnD-NEgB-4G7D7S
LV Write Access read/write
LV Creation host, time archiso, 2013-02-27 20:17:33 +0000
LV Status available
# open 2
LV Size 8.00 GiB
Current LE 2048
Segments 1
Allocation contiguous
Read ahead sectors auto
- currently set to 256
Block device 254:0

--- Logical volume ---
LV Path /dev/VolGroup01/lv_storage
LV Name lv_storage
VG Name VolGroup01
LV UUID iIvwkz-1bph-pCHs-8QOw-F0J9-0RRA-ea783w
LV Write Access read/write
LV Creation host, time archiso, 2013-03-06 03:10:55 +0000
LV Status available
# open 0
LV Size 150.00 GiB
Current LE 38400
Segments 1
Allocation inherit
Read ahead sectors auto
- currently set to 256
Block device 254:1


/etc/fstab ->



# /dev/mapper/VolGroup01-lv_storage
UUID=1b01a1dd-6ea9-484c-933c-e581767ad4b9 /mnt/storage ext4
rw,relatime,data=ordered 0 2

# /dev/mapper/VolGroup01-lv_swap
UUID=66afafb1-5f90-41c0-967e-343a8d269581 none swap
defaults 0 0









share|improve this question
















bumped to the homepage by Community yesterday


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.










  • 1





    I would blame the filesystem first. What filesystems do you have on the hard disk? Also, if you've activated that swap area, it's likely to be used.

    – Gilles
    Mar 6 '13 at 23:31











  • All of the used filesystems are ext4. The swap has been activated (which is stored on the hd). The swap doesnt keep the hd awake (mind that the system currently has 8GB). It really must have something to do with the fact that I removed two volumes, and added one. I'll edit the post for clarity

    – BTZ
    Mar 6 '13 at 23:45












  • Do iotop and powertop show anything useful?

    – Gilles
    Mar 6 '13 at 23:48











  • Never used iotop: thanks! And yes it did: jdb2 seems to be the problem. Apparently it wants to do some journalling stuff every second -> why?

    – BTZ
    Mar 7 '13 at 0:03












  • Sollution found! Will post it within the hour because StackExchange wont allow my to answer my own question within 8 hours -> it had to do with jdb2 not finishing the initial build up of journals and a low commit time. Thanks for the tip on iotop!

    – BTZ
    Mar 7 '13 at 0:36













2












2








2


1






I have a Lenovo W530 running Arch with kernel 3.79 (for bumblebee) and laptop-mode is configured properly and running. It has one SSD (sdb) and one harddisk (sdb). The sdb disk has two lvm-volumes: one is storage and one is swap.



The problem is that the harddisk keeps getting polled and lsof outputs nothing regarding the lvm volumes when these are mounted. When I mount sdb2 (a NTFS partition) the hd spins down correctly; It seems to have something to do with LVM.



All worked fine (i.e. the harddisk spinned down properly) just before I removed two lvm volumes and replaced them with a single volume (lv_storage). I removed them using lvremove and added one using lvcreate.



The harddisk-activity-indication light blinks every second or so. Hdparm can spindown the harddisk (until it gets polled again).



EDIT: problem seems to be the jdb2 journaling service. IOtop reveals that the process ([jdb2/dm-1-8]) is keeping the hd awake. However I only have dm-0(lv_swap) and dm-1 (lv_filestorage) and there are no files residing on the lv_storage volume.



Data:



lsblck ->



NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT
sda 8:0 0 59.6G 0 disk
|-sda1 8:1 0 300M 0 part
|-sda2 8:2 0 100M 0 part /boot/efi
|-sda3 8:3 0 128M 0 part
|-sda4 8:4 0 28.8G 0 part
`-sda5 8:5 0 30.3G 0 part /
sdb 8:16 0 465.8G 0 disk
|-sdb1 8:17 0 195.3G 0 part
| |-VolGroup01-lv_swap (dm-0) 254:0 0 8G 0 lvm [SWAP]
| |-VolGroup01-lv_storage (dm-1) 254:1 0 150G 0 lvm
| `-VolGroup01-lv_test (dm-2) 254:2 0 1G 0 lvm
`-sdb2 8:18 0 270.5G 0 part


uname -a ->



Linux w530 3.7.9-2-ARCH #1 SMP PREEMPT Mon Feb 25 12:04:25 CET 2013 x86_64 GNU/Linux


lvdisplay ->



--- Logical volume ---
LV Path /dev/VolGroup01/lv_swap
LV Name lv_swap
VG Name VolGroup01
LV UUID HoElDQ-OZ3z-XkGX-dBE1-qVnD-NEgB-4G7D7S
LV Write Access read/write
LV Creation host, time archiso, 2013-02-27 20:17:33 +0000
LV Status available
# open 2
LV Size 8.00 GiB
Current LE 2048
Segments 1
Allocation contiguous
Read ahead sectors auto
- currently set to 256
Block device 254:0

--- Logical volume ---
LV Path /dev/VolGroup01/lv_storage
LV Name lv_storage
VG Name VolGroup01
LV UUID iIvwkz-1bph-pCHs-8QOw-F0J9-0RRA-ea783w
LV Write Access read/write
LV Creation host, time archiso, 2013-03-06 03:10:55 +0000
LV Status available
# open 0
LV Size 150.00 GiB
Current LE 38400
Segments 1
Allocation inherit
Read ahead sectors auto
- currently set to 256
Block device 254:1


/etc/fstab ->



# /dev/mapper/VolGroup01-lv_storage
UUID=1b01a1dd-6ea9-484c-933c-e581767ad4b9 /mnt/storage ext4
rw,relatime,data=ordered 0 2

# /dev/mapper/VolGroup01-lv_swap
UUID=66afafb1-5f90-41c0-967e-343a8d269581 none swap
defaults 0 0









share|improve this question
















I have a Lenovo W530 running Arch with kernel 3.79 (for bumblebee) and laptop-mode is configured properly and running. It has one SSD (sdb) and one harddisk (sdb). The sdb disk has two lvm-volumes: one is storage and one is swap.



The problem is that the harddisk keeps getting polled and lsof outputs nothing regarding the lvm volumes when these are mounted. When I mount sdb2 (a NTFS partition) the hd spins down correctly; It seems to have something to do with LVM.



All worked fine (i.e. the harddisk spinned down properly) just before I removed two lvm volumes and replaced them with a single volume (lv_storage). I removed them using lvremove and added one using lvcreate.



The harddisk-activity-indication light blinks every second or so. Hdparm can spindown the harddisk (until it gets polled again).



EDIT: problem seems to be the jdb2 journaling service. IOtop reveals that the process ([jdb2/dm-1-8]) is keeping the hd awake. However I only have dm-0(lv_swap) and dm-1 (lv_filestorage) and there are no files residing on the lv_storage volume.



Data:



lsblck ->



NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT
sda 8:0 0 59.6G 0 disk
|-sda1 8:1 0 300M 0 part
|-sda2 8:2 0 100M 0 part /boot/efi
|-sda3 8:3 0 128M 0 part
|-sda4 8:4 0 28.8G 0 part
`-sda5 8:5 0 30.3G 0 part /
sdb 8:16 0 465.8G 0 disk
|-sdb1 8:17 0 195.3G 0 part
| |-VolGroup01-lv_swap (dm-0) 254:0 0 8G 0 lvm [SWAP]
| |-VolGroup01-lv_storage (dm-1) 254:1 0 150G 0 lvm
| `-VolGroup01-lv_test (dm-2) 254:2 0 1G 0 lvm
`-sdb2 8:18 0 270.5G 0 part


uname -a ->



Linux w530 3.7.9-2-ARCH #1 SMP PREEMPT Mon Feb 25 12:04:25 CET 2013 x86_64 GNU/Linux


lvdisplay ->



--- Logical volume ---
LV Path /dev/VolGroup01/lv_swap
LV Name lv_swap
VG Name VolGroup01
LV UUID HoElDQ-OZ3z-XkGX-dBE1-qVnD-NEgB-4G7D7S
LV Write Access read/write
LV Creation host, time archiso, 2013-02-27 20:17:33 +0000
LV Status available
# open 2
LV Size 8.00 GiB
Current LE 2048
Segments 1
Allocation contiguous
Read ahead sectors auto
- currently set to 256
Block device 254:0

--- Logical volume ---
LV Path /dev/VolGroup01/lv_storage
LV Name lv_storage
VG Name VolGroup01
LV UUID iIvwkz-1bph-pCHs-8QOw-F0J9-0RRA-ea783w
LV Write Access read/write
LV Creation host, time archiso, 2013-03-06 03:10:55 +0000
LV Status available
# open 0
LV Size 150.00 GiB
Current LE 38400
Segments 1
Allocation inherit
Read ahead sectors auto
- currently set to 256
Block device 254:1


/etc/fstab ->



# /dev/mapper/VolGroup01-lv_storage
UUID=1b01a1dd-6ea9-484c-933c-e581767ad4b9 /mnt/storage ext4
rw,relatime,data=ordered 0 2

# /dev/mapper/VolGroup01-lv_swap
UUID=66afafb1-5f90-41c0-967e-343a8d269581 none swap
defaults 0 0






hard-disk lvm






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 7 '13 at 0:15







BTZ

















asked Mar 6 '13 at 18:32









BTZBTZ

515




515





bumped to the homepage by Community yesterday


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.







bumped to the homepage by Community yesterday


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.









  • 1





    I would blame the filesystem first. What filesystems do you have on the hard disk? Also, if you've activated that swap area, it's likely to be used.

    – Gilles
    Mar 6 '13 at 23:31











  • All of the used filesystems are ext4. The swap has been activated (which is stored on the hd). The swap doesnt keep the hd awake (mind that the system currently has 8GB). It really must have something to do with the fact that I removed two volumes, and added one. I'll edit the post for clarity

    – BTZ
    Mar 6 '13 at 23:45












  • Do iotop and powertop show anything useful?

    – Gilles
    Mar 6 '13 at 23:48











  • Never used iotop: thanks! And yes it did: jdb2 seems to be the problem. Apparently it wants to do some journalling stuff every second -> why?

    – BTZ
    Mar 7 '13 at 0:03












  • Sollution found! Will post it within the hour because StackExchange wont allow my to answer my own question within 8 hours -> it had to do with jdb2 not finishing the initial build up of journals and a low commit time. Thanks for the tip on iotop!

    – BTZ
    Mar 7 '13 at 0:36












  • 1





    I would blame the filesystem first. What filesystems do you have on the hard disk? Also, if you've activated that swap area, it's likely to be used.

    – Gilles
    Mar 6 '13 at 23:31











  • All of the used filesystems are ext4. The swap has been activated (which is stored on the hd). The swap doesnt keep the hd awake (mind that the system currently has 8GB). It really must have something to do with the fact that I removed two volumes, and added one. I'll edit the post for clarity

    – BTZ
    Mar 6 '13 at 23:45












  • Do iotop and powertop show anything useful?

    – Gilles
    Mar 6 '13 at 23:48











  • Never used iotop: thanks! And yes it did: jdb2 seems to be the problem. Apparently it wants to do some journalling stuff every second -> why?

    – BTZ
    Mar 7 '13 at 0:03












  • Sollution found! Will post it within the hour because StackExchange wont allow my to answer my own question within 8 hours -> it had to do with jdb2 not finishing the initial build up of journals and a low commit time. Thanks for the tip on iotop!

    – BTZ
    Mar 7 '13 at 0:36







1




1





I would blame the filesystem first. What filesystems do you have on the hard disk? Also, if you've activated that swap area, it's likely to be used.

– Gilles
Mar 6 '13 at 23:31





I would blame the filesystem first. What filesystems do you have on the hard disk? Also, if you've activated that swap area, it's likely to be used.

– Gilles
Mar 6 '13 at 23:31













All of the used filesystems are ext4. The swap has been activated (which is stored on the hd). The swap doesnt keep the hd awake (mind that the system currently has 8GB). It really must have something to do with the fact that I removed two volumes, and added one. I'll edit the post for clarity

– BTZ
Mar 6 '13 at 23:45






All of the used filesystems are ext4. The swap has been activated (which is stored on the hd). The swap doesnt keep the hd awake (mind that the system currently has 8GB). It really must have something to do with the fact that I removed two volumes, and added one. I'll edit the post for clarity

– BTZ
Mar 6 '13 at 23:45














Do iotop and powertop show anything useful?

– Gilles
Mar 6 '13 at 23:48





Do iotop and powertop show anything useful?

– Gilles
Mar 6 '13 at 23:48













Never used iotop: thanks! And yes it did: jdb2 seems to be the problem. Apparently it wants to do some journalling stuff every second -> why?

– BTZ
Mar 7 '13 at 0:03






Never used iotop: thanks! And yes it did: jdb2 seems to be the problem. Apparently it wants to do some journalling stuff every second -> why?

– BTZ
Mar 7 '13 at 0:03














Sollution found! Will post it within the hour because StackExchange wont allow my to answer my own question within 8 hours -> it had to do with jdb2 not finishing the initial build up of journals and a low commit time. Thanks for the tip on iotop!

– BTZ
Mar 7 '13 at 0:36





Sollution found! Will post it within the hour because StackExchange wont allow my to answer my own question within 8 hours -> it had to do with jdb2 not finishing the initial build up of journals and a low commit time. Thanks for the tip on iotop!

– BTZ
Mar 7 '13 at 0:36










1 Answer
1






active

oldest

votes


















0














It isn't LVM, it is the ext4 filesystem. By default it commits the journal to disk every 5 seconds. You can correct this using the commit mount option and setting it to a longer interval. See man mount.






share|improve this answer






















    Your Answer








    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "106"
    ;
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function()
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled)
    StackExchange.using("snippets", function()
    createEditor();
    );

    else
    createEditor();

    );

    function createEditor()
    StackExchange.prepareEditor(
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: false,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: null,
    bindNavPrevention: true,
    postfix: "",
    imageUploader:
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    ,
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );













    draft saved

    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f67085%2flvm-keeping-harddisk-awake%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    0














    It isn't LVM, it is the ext4 filesystem. By default it commits the journal to disk every 5 seconds. You can correct this using the commit mount option and setting it to a longer interval. See man mount.






    share|improve this answer



























      0














      It isn't LVM, it is the ext4 filesystem. By default it commits the journal to disk every 5 seconds. You can correct this using the commit mount option and setting it to a longer interval. See man mount.






      share|improve this answer

























        0












        0








        0







        It isn't LVM, it is the ext4 filesystem. By default it commits the journal to disk every 5 seconds. You can correct this using the commit mount option and setting it to a longer interval. See man mount.






        share|improve this answer













        It isn't LVM, it is the ext4 filesystem. By default it commits the journal to disk every 5 seconds. You can correct this using the commit mount option and setting it to a longer interval. See man mount.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Feb 16 '14 at 5:17









        psusipsusi

        13.7k22539




        13.7k22539



























            draft saved

            draft discarded
















































            Thanks for contributing an answer to Unix & Linux Stack Exchange!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid


            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.

            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f67085%2flvm-keeping-harddisk-awake%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            -hard-disk, lvm

            Popular posts from this blog

            Mobil Contents History Mobil brands Former Mobil brands Lukoil transaction Mobil UK Mobil Australia Mobil New Zealand Mobil Greece Mobil in Japan Mobil in Canada Mobil Egypt See also References External links Navigation menuwww.mobil.com"Mobil Corporation"the original"Our Houston campus""Business & Finance: Socony-Vacuum Corp.""Popular Mechanics""Lubrite Technologies""Exxon Mobil campus 'clearly happening'""Toledo Blade - Google News Archive Search""The Lion and the Moose - How 2 Executives Pulled off the Biggest Merger Ever""ExxonMobil Press Release""Lubricants""Archived copy"the original"Mobil 1™ and Mobil Super™ motor oil and synthetic motor oil - Mobil™ Motor Oils""Mobil Delvac""Mobil Industrial website""The State of Competition in Gasoline Marketing: The Effects of Refiner Operations at Retail""Mobil Travel Guide to become Forbes Travel Guide""Hotel Rankings: Forbes Merges with Mobil"the original"Jamieson oil industry history""Mobil news""Caltex pumps for control""Watchdog blocks Caltex bid""Exxon Mobil sells service station network""Mobil Oil New Zealand Limited is New Zealand's oldest oil company, with predecessor companies having first established a presence in the country in 1896""ExxonMobil subsidiaries have a business history in New Zealand stretching back more than 120 years. We are involved in petroleum refining and distribution and the marketing of fuels, lubricants and chemical products""Archived copy"the original"Exxon Mobil to Sell Its Japanese Arm for $3.9 Billion""Gas station merger will end Esso and Mobil's long run in Japan""Esso moves to affiliate itself with PC Optimum, no longer Aeroplan, in loyalty point switch""Mobil brand of gas stations to launch in Canada after deal for 213 Loblaws-owned locations""Mobil Nears Completion of Rebranding 200 Loblaw Gas Stations""Learn about ExxonMobil's operations in Egypt""Petrol and Diesel Service Stations in Egypt - Mobil"Official websiteExxon Mobil corporate websiteMobil Industrial official websiteeeeeeeeDA04275022275790-40000 0001 0860 5061n82045453134887257134887257

            Frič See also Navigation menuinternal link

            Identify plant with long narrow paired leaves and reddish stems Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?What is this plant with long sharp leaves? Is it a weed?What is this 3ft high, stalky plant, with mid sized narrow leaves?What is this young shrub with opposite ovate, crenate leaves and reddish stems?What is this plant with large broad serrated leaves?Identify this upright branching weed with long leaves and reddish stemsPlease help me identify this bulbous plant with long, broad leaves and white flowersWhat is this small annual with narrow gray/green leaves and rust colored daisy-type flowers?What is this chilli plant?Does anyone know what type of chilli plant this is?Help identify this plant