Swap: Difference between revisions
No edit summary |
|||
(17 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
[[Swap]] refers to using storage for data that does not fit into |
[[Swap]] refers to using storage for volatile data that does not fit into memory. |
||
= Introduction = |
|||
The XO-1 has only 256 MiB of |
The XO-1 has only 256 MiB of memory (see [[Hardware specifications]]); adding swap space may allow running more simultaneous instances of more complicated applications. |
||
The XO-1.5, XO-1.75 and XO-4 have more |
The XO-1.5, XO-1.75 and XO-4 have more memory, so swap space is rarely needed, except for special situations. |
||
Get a [[Secure Digital card]]. |
Get a [[Secure Digital card]]. |
||
Line 15: | Line 15: | ||
SD card slot on the XO. You'll have to keep it plugged in the whole |
SD card slot on the XO. You'll have to keep it plugged in the whole |
||
time while you're swapping to it; you can't remove it the way you |
time while you're swapping to it; you can't remove it the way you |
||
remove a USB |
remove a USB drive or a non-swap SD card. When it starts to slow down |
||
after a few years, you can copy any still-interesting user files off |
after a few years, you can copy any still-interesting user files off |
||
it, throw it away, and put in a new SD card. |
it, throw it away, and put in a new SD card. |
||
= How much swap? = |
|||
⚫ | |||
⚫ | |||
In the examples below we use 64 MiB of swap. This is a reasonable amount for ordinary interactive use of an XO-1, and can substantially improve user experience when demand is high. |
|||
⚫ | |||
⚫ | |||
⚫ | |||
Type <tt>mount</tt> (and press Enter after this and all other commands), make sure the SD card is mounted at <tt>/dev/mmcblk0p1</tt>, |
|||
in a "vfat" filesystem. |
|||
Go into the Journal, find the SD card at the lower left (it may be hidden by the Frame), hover over it, choose Unmount. Go back to the terminal. |
|||
Type <tt>mount</tt>, make sure <tt>/dev/mmcblk0p1</tt> is not mounted any more. Type |
|||
<tt>yum install parted</tt> since the partition editor is not part of the OLPC system software (you'll need to be on the Internet to do this). |
|||
Run <tt>/sbin/parted /dev/mmcblk0</tt>. Type <tt>print</tt> to see the |
|||
current configuration. On my 1GB SD card it looked like this: |
|||
Number Start End Size Type File system Flags |
|||
1 127kB 1018MB 1018MB primary fat16 |
|||
Type <tt>resize 1 0 512</tt> to shrink this filesystem down to 512MB. If it |
|||
asks you whether to use FAT32, say no if your card is 2GB or less. Then type <tt>mkpartfs |
|||
primary linux-swap 512 1018</tt>. That'll make a second partition for |
|||
swapping to, and format it as a Linux swap partition. (If your SD card is a different |
|||
size, adjust these numbers to give you larger or smaller partitions that fit.) Type <tt>print</tt> |
|||
and for a 1GB card it should look roughly like this: |
|||
Number Start End Size Type File system Flags |
|||
1 32.3kB 512MB 512MB primary fat16 |
|||
2 512MB 1018MB 506MB primary linux-swap |
|||
Type <tt>quit</tt> to exit parted. |
|||
As an example of the improvement, on 13.2.0 one can open many Sugar activities without closing the previous activity, and then switch between them with <tt>alt-tab</tt>. Without swap this is impractical. |
|||
Now you're back to the shell. |
|||
Special situations may require more swap. |
|||
Type <tt>/sbin/swapon /dev/mmcblk0p2</tt> to add this second partition as a swap device. To have this partition used as swap when the system boots, add this line to <tt>/etc/rc.local</tt>. |
|||
The device you use may have ample space, so using more is reasonable. |
|||
The Hal daemon is smart enough to mount filesystems when it sees an SD |
|||
card appear, but it's not smart enough to start using freshly |
|||
available swap space. For the moment, you'll have to enter <tt>/sbin/swapon |
|||
/dev/mmcblk0p2</tt> each time after you insert the card. (Similarly, it |
|||
won't automatically do a <tt>/sbin/swapoff</tt> if you try to eject the SD card, but removing swap from a running system is not a good idea.) I'm sure somebody will eventually come up with a Hal script or something to automate this. |
|||
= Swap to a file on a device = |
|||
A file on a filesystem on an SD card or USB drive can be used for swap. |
A file on a filesystem on an SD card or USB drive can be used for swap. |
||
Advantages: |
Advantages: |
||
* |
* avoids dedicating a partition on external device, |
||
* avoids repartitioning, |
|||
Disadvantages: |
Disadvantages: |
||
* the XO may hang if the device is removed without first turning off swap, |
* the XO may hang if the device is removed without first turning off swap<ref name="hang">once the system is using a resource for swap, it relies on it heavily, and if the resource is lost the system may hang, so you have to make sure it isn't lost, or if it is lost use the power button to reboot.</ref>, |
||
* |
* slightly less efficient<ref>swap to a file on a filesystem is less efficient than swap to partition, but not notably so; the extra CPU cost of remapping the swap I/O is minimal, and at the time the swap is used the system is already under demand.</ref>. |
||
Recipe for Sugar: |
|||
Here's a way to make a 256 MB swap file on an external filesystem. |
|||
* download [http://dev.laptop.org/~quozl/MakeSwap-3.xo MakeSwap-3.xo], |
|||
* insert an SD card<ref name="covering">if a child is to be using the laptop with swap, then it may be appropriate to cover the slot with adhesive so that the card is not easily removed.</ref> with a FAT filesystem<ref>MakeSwap does not work with anything other than FAT formatted cards. SD cards are FAT formatted and optimised by the manufacturer, so if you have reformatted them you will need to use other instructions.</ref>, |
|||
* run the activity, wait for it to say it is done, then quit, |
|||
* the activity can be safely run again (it does nothing new), or erased (swap continues to be available). |
|||
Recipe for GNOME: |
|||
* remove all other SD cards or USB drives, (to make the following simplest), |
* remove all other SD cards or USB drives, (to make the following simplest), |
||
* insert the SD card or USB drive, |
* insert the SD card or USB drive<ref name="sd_better">it is best to use an SD card rather than a USB drive</ref>, |
||
* in |
* in Terminal, as [[Root]], copy and paste the commands: |
||
# find the SD card or USB drive and make a file name for it |
# find the SD card or USB drive and make a file name for it |
||
D=/run/media/olpc/ |
D=/run/media/olpc/ |
||
Line 82: | Line 55: | ||
F=$E/swap |
F=$E/swap |
||
# create a |
# create a 64 MiB file |
||
dd if=/dev/zero of="$F" bs=1M count= |
dd if=/dev/zero of="$F" bs=1M count=64 |
||
# mark the file as a swap file |
# mark the file as a swap file |
||
Line 95: | Line 68: | ||
sudo swapoff -a |
sudo swapoff -a |
||
* repeat the steps each time you reboot, |
* repeat the steps each time you reboot, |
||
Last tested with 13.2.1. Does not work exactly the same way on earlier releases. |
|||
⚫ | |||
⚫ | |||
Advantages: |
|||
* suited to use with a child<ref name="covering" />, |
|||
⚫ | |||
⚫ | |||
* the device should not be removed once inserted<ref name="hang" />. |
|||
Recipe: |
|||
⚫ | |||
yum install -y gparted |
|||
* insert the SD card or USB drive, and use gparted (Applications -> System Tools -> GParted Partition Editor) to delete the manufacturer's partition and add a linux-swap partition, then add it to the filesystem table: |
|||
eval $(blkid -o export /dev/mmcblk1p1) # get the UUID |
|||
echo UUID=$UUID swap swap defaults 0 0 >> /etc/fstab # add to table |
|||
swapon -a -v # turn on swap |
|||
Last tested with 13.2.0. |
Last tested with 13.2.0. |
||
= Swap to a file on another system, using the network block device = |
|||
Swap can be added as a file on another system, with access over network connection using the network block device driver, which is available as a module. |
Swap can be added as a file on another system, with access over network connection using the network block device driver, which is available as a module. |
||
Line 108: | Line 101: | ||
Disadvantages: |
Disadvantages: |
||
* the XO may hang if the other system is shutdown, or the network connection is lost, without first turning off swap, |
* the XO may hang<ref name="hang" /> if the other system is shutdown, or the network connection is lost, without first turning off swap, |
||
* the network may be loaded, |
* the network may be loaded, |
||
* disk space is needed on the other system. |
* disk space is needed on the other system. |
||
Line 117: | Line 110: | ||
yum install -y nbd |
yum install -y nbd |
||
# create a |
# create a 64 MiB empty file |
||
dd if=/dev/zero of=/root/xo-swap bs=1048576 count= |
dd if=/dev/zero of=/root/xo-swap bs=1048576 count=64 |
||
# provide it over network block device protocol on port 1234 |
# provide it over network block device protocol on port 1234 |
||
Line 142: | Line 135: | ||
Last tested with 13.2.0. |
Last tested with 13.2.0. |
||
= Swap to a file on internal device = |
|||
Swap won't attach to a file on internal storage on XO-1, because of a limitation of the filesystem driver, but this can be bypassed using a loopback block device. |
Swap won't attach to a file on internal storage on XO-1, because of a limitation of the filesystem driver, but this can be bypassed using a loopback block device. |
||
Line 150: | Line 143: | ||
Disadvantages: |
Disadvantages: |
||
* the XO-1 internal storage is rated for 100,000 writes per cell, the filesystem will try to spread that across the whole device, so |
* the XO-1 will become slower over months instead of years<ref>the XO-1 internal storage is rated for 100,000 writes per cell, the filesystem will try to spread that across the whole device, so using the internal storage as swap will shorten the life of the internal storage, and it will become ''permanently'' slower much earlier than planned by the designers.</ref>. |
||
Recipe: |
Recipe: |
||
Line 157: | Line 150: | ||
# create the file and preallocate the space |
# create the file and preallocate the space |
||
dd if=/dev/zero of=$FILE count= |
dd if=/dev/zero of=$FILE bs=1M count=64 |
||
# write the swap signature pattern into the file |
# write the swap signature pattern into the file |
||
Line 169: | Line 162: | ||
Last tested on 13.2.0. |
Last tested on 13.2.0. |
||
= Monitoring = |
|||
* the {{Code|swapon -a}} and {{Code|free}} commands are helpful for confirming that swap is available, |
|||
* using a USB drive with an indicator is helpful for assessing when swap is being accessed, |
|||
* the {{Code|top}} command is helpful for seeing how much swap and memory demand is happening. |
|||
= Notes = |
|||
{{reflist}} |
|||
[[Category:HowTo]] |
[[Category:HowTo]] |
Latest revision as of 01:28, 17 July 2014
Swap refers to using storage for volatile data that does not fit into memory.
Introduction
The XO-1 has only 256 MiB of memory (see Hardware specifications); adding swap space may allow running more simultaneous instances of more complicated applications.
The XO-1.5, XO-1.75 and XO-4 have more memory, so swap space is rarely needed, except for special situations.
Get a Secure Digital card. You can use a throwaway SD card, these are available for very little. We say throwaway because swapping to it will tend to burn it up faster than its "usual" lifetime for photos and such. You will still be able to use the rest of the card for file storage; about 512 MB will be for swap space. Plug it into the SD card slot on the XO. You'll have to keep it plugged in the whole time while you're swapping to it; you can't remove it the way you remove a USB drive or a non-swap SD card. When it starts to slow down after a few years, you can copy any still-interesting user files off it, throw it away, and put in a new SD card.
How much swap?
In the examples below we use 64 MiB of swap. This is a reasonable amount for ordinary interactive use of an XO-1, and can substantially improve user experience when demand is high.
As an example of the improvement, on 13.2.0 one can open many Sugar activities without closing the previous activity, and then switch between them with alt-tab. Without swap this is impractical.
Special situations may require more swap.
The device you use may have ample space, so using more is reasonable.
Swap to a file on a device
A file on a filesystem on an SD card or USB drive can be used for swap.
Advantages:
- avoids dedicating a partition on external device,
- avoids repartitioning,
Disadvantages:
- the XO may hang if the device is removed without first turning off swap<ref name="hang">once the system is using a resource for swap, it relies on it heavily, and if the resource is lost the system may hang, so you have to make sure it isn't lost, or if it is lost use the power button to reboot.</ref>,
- slightly less efficient<ref>swap to a file on a filesystem is less efficient than swap to partition, but not notably so; the extra CPU cost of remapping the swap I/O is minimal, and at the time the swap is used the system is already under demand.</ref>.
Recipe for Sugar:
- download MakeSwap-3.xo,
- insert an SD card<ref name="covering">if a child is to be using the laptop with swap, then it may be appropriate to cover the slot with adhesive so that the card is not easily removed.</ref> with a FAT filesystem<ref>MakeSwap does not work with anything other than FAT formatted cards. SD cards are FAT formatted and optimised by the manufacturer, so if you have reformatted them you will need to use other instructions.</ref>,
- run the activity, wait for it to say it is done, then quit,
- the activity can be safely run again (it does nothing new), or erased (swap continues to be available).
Recipe for GNOME:
- remove all other SD cards or USB drives, (to make the following simplest),
- insert the SD card or USB drive<ref name="sd_better">it is best to use an SD card rather than a USB drive</ref>,
- in Terminal, as Root, copy and paste the commands:
# find the SD card or USB drive and make a file name for it D=/run/media/olpc/ E="$D$(ls $D)" F=$E/swap # create a 64 MiB file dd if=/dev/zero of="$F" bs=1M count=64 # mark the file as a swap file sudo mkswap "$F" # start using the file sudo swapon $F
- to verify the swapfile is being used:
sudo swapon -s
- to safely remove the device,
sudo swapoff -a
- repeat the steps each time you reboot,
Last tested with 13.2.1. Does not work exactly the same way on earlier releases.
Swap to an entire device
An entire SD card or USB drive can be used for swap.
Advantages:
- suited to use with a child<ref name="covering" />,
Disadvantages:
- need to repartition the device, which loses all files, and may affect performance of the device,
- the device should not be removed once inserted<ref name="hang" />.
Recipe:
- in the Terminal activity, become root, then install the gparted package:
yum install -y gparted
- insert the SD card or USB drive, and use gparted (Applications -> System Tools -> GParted Partition Editor) to delete the manufacturer's partition and add a linux-swap partition, then add it to the filesystem table:
eval $(blkid -o export /dev/mmcblk1p1) # get the UUID echo UUID=$UUID swap swap defaults 0 0 >> /etc/fstab # add to table swapon -a -v # turn on swap
Last tested with 13.2.0.
Swap to a file on another system, using the network block device
Swap can be added as a file on another system, with access over network connection using the network block device driver, which is available as a module.
Advantages:
- swap space can be added when needed rather than always available,
- additional swap space can be added at any time,
- no damage to endurance of SD card or USB drive,
Disadvantages:
- the XO may hang<ref name="hang" /> if the other system is shutdown, or the network connection is lost, without first turning off swap,
- the network may be loaded,
- disk space is needed on the other system.
Setup the other system:
# install the nbd package yum install -y nbd # create a 64 MiB empty file dd if=/dev/zero of=/root/xo-swap bs=1048576 count=64 # provide it over network block device protocol on port 1234 nbd-server 1234 /root/xo-swap
Setup the XO:
# install the nbd package yum install -y nbd # load the network block device module modprobe nbd # attach the network block device to the remote system nbd-client 10.0.0.1 1234 /dev/nbd0 # make swap space on the block device mkswap /dev/nbd0 # enable swap space swapon /dev/nbd0
Last tested with 13.2.0.
Swap to a file on internal device
Swap won't attach to a file on internal storage on XO-1, because of a limitation of the filesystem driver, but this can be bypassed using a loopback block device.
Advantages:
- no additional hardware or network required.
Disadvantages:
- the XO-1 will become slower over months instead of years<ref>the XO-1 internal storage is rated for 100,000 writes per cell, the filesystem will try to spread that across the whole device, so using the internal storage as swap will shorten the life of the internal storage, and it will become permanently slower much earlier than planned by the designers.</ref>.
Recipe:
# set the name of the swap file FILE=/var/swap # create the file and preallocate the space dd if=/dev/zero of=$FILE bs=1M count=64 # write the swap signature pattern into the file /sbin/mkswap $FILE # create a loopback block device representing the file LOOP=$(losetup --show --find $FILE) # turn on swap through the loopback device swapon $LOOP
Last tested on 13.2.0.
Monitoring
- the swapon -a and free commands are helpful for confirming that swap is available,
- using a USB drive with an indicator is helpful for assessing when swap is being accessed,
- the top command is helpful for seeing how much swap and memory demand is happening.