- 精华
- 0
- 帖子
- 402
- 威望
- 0 点
- 积分
- 513 点
- 种子
- 10 点
- 注册时间
- 2008-9-19
- 最后登录
- 2024-11-15
|
本帖最后由 leonablues 于 2011-5-5 12:49 编辑
115下载
以下是网络上搜寻的安装方法,时间有限,正在逐条翻译中。
Requirements:
A Playstation2 with network adapter and a compatible harddrive. The HD controller is integrated in the network adapter. Bring the adapter when you're purchasing the hdd. Some drives are physically incompatible due to the fixed distance between the power and IDE sockets on the controller.
A modchip. You can use the swap trick, but really.. get a modchip. It's worth every buck.
系统要求:
ps2+网卡+硬盘,最好是改过机的。
Burn the BlackRhino ISO to a CD
For obvious reasons, you can't run it from the HDLoader, so you really need to burn it to a CD.
解压镜像,刻录成CD,注意:本镜像无法通过HDL等方式运行。
Boot the CD
Be sure to hold down SELECT+R2 if you want to use the PS2 on a TV or a composite monitor. If you already have the machine connected to a VGA monitor, you can skip this step. Select the "BOOT" menu, then choose "Install BR" from the next screen (upper left corner). This will start the Linux kernel, and dump you into a shell.
开机时按住SELECT+R2,当然如果PS2已经和显示器连接好了,此步骤可省略。
菜单出现后选择BOOT,之后选择INSTALL BR,然后就会开始安装LINUX核心等等。
Prepare the partitions
以下为linux准备分区。
Log in as root. No password is required.
用ROOT登陆,不需密码。
Run the command "ps2fdisk". This is your average Linux fdisk, but here are some sample instructions for those of you who are not familiar with it:
执行命令ps2fdisk进行分区,以下为具体参数设置。
fdisk> n
partition number: 1
size in MB: (recommended: 4000mb or greater)分区大小:推荐为4000mb
partition type: l (lowercase "L")此处为小写的字母L
comment: main
fdisk> n
partition number: 2
size in MB: (recommended: ?? 256mb?)分区大小:推荐为256mb
partition type: s
comment: swap
fdisk> w
Now /dev/hda1 is for the Linux OS and /dev/hda2 is for the swap.现在DEV/HDA 1 是linux系统分区,而DEV/HDA2则是交换分区
Next up is to format /dev/hda1:接下来格式化DEV/HDA1
mke2fs /dev/hda
This may take a minute, depending on the size of your partitions. 分区大小不同,需要等待的时间长短不同。
Install the OS
First let's mount the cdrom:
cd /lib/modules/2.2.1/fs/
insmod isofs.o
mount -tiso9660 /dev/ps2cdvd /mnt/cdrom
Then let's mount the hd partition:
mount /dev/hda1 /mnt/hd
Now, let's unpack the OS from the CD to the hdd:
cd /mnt/hd
tar xvzf /mnt/cdrom/brimage.tgz
You'll see lots of files being extracted to the hdd. This may take a minute or so.
You're done!
That's it - really! You can now reboot the playstation and start from the CD again. This time, go to the BOOT menu and select "BlackRhino" from the next page. This will automatically start your Linux kernel on /dev/hda1.
The rest is standard debian. Run 'apt-get update' once to build the apt |
|