You are not logged in.
hi all!
i decided to change my archlinux platfrom to i686. is there any way legal to do it?
i think if i change repo path to i686 and launch script like
#!/bin/sh
PACKAGES=`pacman -Q | awk '{print $1}'`
I=1
for PACKAGE in $PACKAGES; do
echo $I. $PACKAGE
pacman -S --asdeps --noconfirm $PACKAGE
I=$(($I+1))
doneit must be enough. then i'll only need to reboot system and replace all lib32 and bin32 packages which've installed with native.
may be there're pitfalls in this way. can anybody help me with this?
best regards
Offline
Welcome to the forums infestator.
This comes up here now and then. I think all of these threads end the same:
Backup /home, /etc, and (possibly?) parts of /var. Use pacman to create a list of all installed files, and start from scratch.
Offline