|
楼主 |
发表于 2008-5-10 21:21:51
|
显示全部楼层
so,i v ask Sayan howto install it.
“
This would be the steps for manual installation of March on a hard disk partition:
1) Prepare a partition for installation. You have to define a filesystem on it (ext3, reiserfs, etc). You can use the gparted tool included in the live cd as Partition Editor.
We'll call this partition /dev/hda1 (e.g.)
2) Mount the target partition at /mnt/hda1 (say). If the mount directory doesn't exist, create it!
3) Now u need to copy ALL files & directories in your running March Live system to this partition:
First, become ROOT (sudo su).
Code:
cp --preserve -R /{bin,dev,etc,home,lib,root,sbin,usr,var} /mnt/hda1
mkdir /mnt/hda1/{boot,mnt,proc,sys,tmp}
cp /boot/boot/vmlinuz /mnt/hda1/boot
4) Mount proc and dev & chroot into hda1:
Code:
mount -t proc proc /mnt/hda1/proc
mount --bind /dev /mnt/hda1/dev
mount -t proc proc /mnt/hda1/proc
chroot /mnt/hda1
5) Try to install GRUB using grub-install (while u are within the chrooted partition). U might need to use --recheck option for grub-install. Then hand edit the menu.list file in /boot/grub/.
Note that this step is optional. If u have an existing GRUB installation for an existing linux distro, u might just edit the current menu.list to add a new entry for March, according to where u have installed it.
******************
Hope this would help. Note that this is largely a stop-gap solution, and not a real one! I will soon start working on marchin, a 'proper' GUI installer for March.
Till then, enjoy March Linux!
Cheers!
”
now, install it at anytime. |
|