You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
sorry this is the llm prompt and response, tldr i need to add a line to lvm.conf how to do go about that with disko
>>> could i combine 2x250gb ssd and 2x1tb hdd to use the ssd as a cache for the hdd in linux
Yes, you can combine two 250GB SSDs and two 1TB HDDs to create a storage solution that uses the SSDs
as a cache for the HDDs in Linux. This is known as a "hybrid" storage configuration, where the
faster SSDs are used as a cache for the slower HDDs.
To set this up in Linux, you can use a tool called LVM (Logical Volume Manager) to create a single
logical volume that spans both the SSDs and the HDDs. You can then configure LVM to use the SSDs as
a cache for the HDDs by setting up a "write-through" policy, which writes data to both the SSDs and
the HDDs simultaneously.
Here's an example of how you might set this up using LVM:
1. First, create a physical volume (PV) for each disk. In this example, we'll use /dev/sda and
/dev/sdb for the SSDs, and /dev/sdc and /dev/sdd for the HDDs.
First off, please do additional research on your own instead of just blindly trusting an LLM to make a good decision for you. Instead of using LVM and putting an ext4 filesystem on top of it, using ZFS or btrfs which implement caching directly might be the better option.
If you're sure that you want to use LVM for this, I'd say your best starting point is this example. Take a look at the lvm_pv and lvm_vg types to see what your options are. You might have to call lvconvert semi-manually by setting postCreateHook, we don't have a way to do this sort of thing yet, see #421
iFreilicht
changed the title
configuring write-through policy
Using two SSDs as cache for two HDDs with LVM
Oct 14, 2024
sorry this is the llm prompt and response, tldr i need to add a line to lvm.conf how to do go about that with disko
sudo pvcreate /dev/sda
sudo pvcreate /dev/sdb
sudo pvcreate /dev/sdc
sudo pvcreate /dev/sdd
sudo vgcreate hybrid-storage /dev/sda /dev/sdb /dev/sdc /dev/sdd
sudo lvcreate hybrid-storage -n root
sudo mkfs.ext4 /dev/mapper/hybrid--storage-root
sudo mount /dev/mapper/hybrid--storage-root /mnt/hybrid-storage
hybrid-storage {
# ... other configuration options here ...
cache = writethrough
The text was updated successfully, but these errors were encountered: