Interaction Schema
| type: | object |
|---|
| # Unmount /home | |
| umount /home | |
| # Shrink the /home filesystem | |
| fsck -f /dev/mapper/fedora-hmoe | |
| resize2fs /dev/mapper/fedora-home 100G | |
| # Shrink the /home logical volume |
| #!/usr/bin/env python | |
| """" | |
| Bulk download records from legacy, usage: `get_marcxml.py [number_of_records] > [output_marcxml]` | |
| To migrate: `inspirehep migrator populate -f [path_to_marcxml]` | |
| """ | |
| from lxml.etree import fromstring, tostring | |
| import requests | |
| import sys |