This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
admin:procedures [2023/03/20 14:14] peppe |
admin:procedures [2024/10/01 11:38] (current) peppe |
||
---|---|---|---|
Line 19: | Line 19: | ||
=== titan-new (10.7.4.44) === | === titan-new (10.7.4.44) === | ||
+ | Για προπτυχιακούς φοιτητές | ||
# create_student_quotas.sh < | # create_student_quotas.sh < | ||
+ | |||
+ | Για μεταπτυχιακούς φοιτητές | ||
+ | # create_grads_quotas.sh < | ||
+ | | ||
+ | Για διδακτορικούς φοιτητές | ||
+ | # create_phd_quotas.sh < | ||
+ | | ||
+ | Για προσωπικό | ||
+ | # create_staff_quotas.sh < | ||
+ | και προσθήκη στο / | ||
---- | ---- | ||
Line 252: | Line 263: | ||
# chroot /mnt | # chroot /mnt | ||
# grub-install /dev/sda | # grub-install /dev/sda | ||
+ | |||
+ | |||
+ | ==== Install zstd compressed archives in debian < 12 ==== | ||
+ | If you are running Debian < 12 and need to install a .deb package that uses zstd, you can repack it: | ||
+ | |||
+ | # Extract files from the archive | ||
+ | ar x some-package.deb | ||
+ | # Uncompress zstd files an re-compress them using xz | ||
+ | zstd -d < control.tar.zst | xz > control.tar.xz | ||
+ | zstd -d < data.tar.zst | xz > data.tar.xz | ||
+ | # Re-create the Debian package in /tmp/ | ||
+ | ar -m -c -a sdsd / | ||
+ | # Clean up | ||
+ | rm debian-binary control.tar.xz data.tar.xz control.tar.zst data.tar.zst | ||