-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #99 from EuroLinux/migrate2rocky
fix(migrate_to_rocky_linux.md) List formating
- Loading branch information
Showing
1 changed file
with
25 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,32 @@ | ||
# Procedure for migrating EuroLinux to RockyLinux | ||
|
||
1. Preparation: | ||
- Ensure a stable and reliable internet connection throughout the entire migration process. This is critical for downloading scripts and packages. | ||
- Create a full backup of the system to be migrated. | ||
- Test the recovery procedure to ensure you can restore the system in case of interruption or errors during migration. | ||
- It is recommended to run the migration in a session manager, e.g., tmux. | ||
- Ensure a stable and reliable internet connection throughout the entire migration process. This is critical for downloading scripts and packages. | ||
- Create a full backup of the system to be migrated. | ||
- Test the recovery procedure to ensure you can restore the system in case of interruption or errors during migration. | ||
- It is recommended to run the migration in a session manager, e.g., tmux. | ||
|
||
2. Download migration scripts: | ||
- For EL8: | ||
``` | ||
curl -O https://raw.githubusercontent.com/EuroLinux/rocky-tools/feature/vaulted_migration/migrate2rocky/migrate2rocky.sh | ||
``` | ||
- For EL9: | ||
``` | ||
curl -O https://raw.githubusercontent.com/EuroLinux/rocky-tools/feature/vaulted_migration/migrate2rocky/migrate2rocky9.sh | ||
``` | ||
- For EL8: | ||
``` | ||
curl -O https://raw.githubusercontent.com/EuroLinux/rocky-tools/feature/vaulted_migration/migrate2rocky/migrate2rocky.sh | ||
``` | ||
- For EL9: | ||
``` | ||
curl -O https://raw.githubusercontent.com/EuroLinux/rocky-tools/feature/vaulted_migration/migrate2rocky/migrate2rocky9.sh | ||
``` | ||
3. Migration: | ||
- Migrating EuroLinux 8 to RockyLinux 8: | ||
``` | ||
sudo bash migrate2rocky.sh -r | ||
``` | ||
- Migrating EuroLinux 9.4 to RockyLinux 9.4: | ||
- If RockyLinux has not yet released version 9.5: | ||
``` | ||
sudo bash migrate2rocky9.sh -r | ||
``` | ||
- If RockyLinux has already released version 9.5 or higher: | ||
``` | ||
sudo bash migrate2rocky9.sh -rv 9.4 | ||
``` | ||
- Migrating EuroLinux 8 to RockyLinux 8: | ||
``` | ||
sudo bash migrate2rocky.sh -r | ||
``` | ||
- Migrating EuroLinux 9.4 to RockyLinux 9.4: | ||
- If RockyLinux has not yet released version 9.5: | ||
``` | ||
sudo bash migrate2rocky9.sh -r | ||
``` | ||
- If RockyLinux has already released version 9.5 or higher: | ||
``` | ||
sudo bash migrate2rocky9.sh -rv 9.4 | ||
``` |