- 浏览: 1318521 次
- 性别:
- 来自: 广州
文章分类
- 全部博客 (351)
- Java General (37)
- .net General (2)
- Linux Toy (55)
- Oracle (81)
- Mysql (11)
- Programer Career (12)
- Oh, my living ! (2)
- Shell Script (8)
- Web Service (0)
- Linux Server (22)
- Php/Python/Perl (3P) (2)
- Javascript General (5)
- Saleforce Apex Dev (2)
- Web General (5)
- Xen & VM tech. (17)
- PSP (13)
- OpenSolaris (34)
- php (1)
- RAI/flex/action script (16)
- asterisk/CTI (7)
- 交互设计 (6)
- English (3)
- Lucene (1)
最新评论
-
GuolinLee:
markmark
JVM调优总结 -Xms -Xmx -Xmn -Xss -
di1984HIT:
写的太好啊。
JVM调优总结 -Xms -Xmx -Xmn -Xss -
javajdbc:
javajdbc 写道
JVM调优总结 -Xms -Xmx -Xmn -Xss -
javajdbc:
...
JVM调优总结 -Xms -Xmx -Xmn -Xss -
alvin198761:
非常感谢,国外的被封杀了,你这里还有一份
How to Convert An Image-Based Guest To An LVM-Based Guest
I was able to successfully install Solaris 8 on my SPARCstation 10 using my Red Hat 7.3 Linux machine as a boot server. I downloaded the Solaris 8 CD images from Sun. I don't have a SCSI CD-ROM for the SS 10. But I do have CD-RW drive on my Linux machine and a network to connect them together. I connected to the serial console on the SS10.
Network Boot
The Solaris Install CD isn't needed for the install; it is for booting from the CD drive and doing a graphical install. The Software 1 CD CD contains the root filesystem and core packages. The Software 2 CD contains optional packages that can be copied over for the main install, or installed later.
The Solaris_8/Tools directory contains some shell scripts that are used on Solaris machine to setup a boot server. These don't work under Linux but inspecting them shows how a boot server can be setup on other Unix machines.
Setup network booting as described in my Network Boot Server for SPARC article.
Root Files
The root filesystem is on the Software 1 CD in the Solaris_8/Tools/Boot directory. It needs to be copied to the boot server using either tar or cpio commands to preserve all the file attributes.
# cd /mnt/cdrom/Solaris_8/Tools
# find . -depth -print | cpio -pdmu /pub/solaris/Solaris_8/Tools
TFTP
The network boot file for loading over TFTP is the usr/platform/platform/lib/fs/nfs/inetboot file in Solaris_8/Tools/Boot. Copy the file for your platform to the /tftpboot directory and symlink it to the file for the client.
# cd /pub/solaris/Solaris_8/Tools/Boot
# cp usr/platform/sun4m/lib/fs/nfs/inetboot /tftpboot
# cd /tftpboot
# ln -sf inetboot C0A8010C.SUN4M
Product Files
The core packages are also on the Software 1 CD in the Solaris_8/Product directory. This directory must be available over NFS. It can be copied from the CD-ROM to the hard drive. If you want to install the packages from the Software 2 CD, also copy them to the same location onto the hard disk with the same command.
# cd /mnt/cdrom/Solaris_8
# find Product -depth -print | cpio -pdmu
# /pub/solaris/Solaris_8
Alternatively, the CD-ROM can be exported directly over NFS. One snag with this is that you won't be able to unmount or eject the CD while it is exported. The solution is to not add a line to the /etc/exportfs file, but use the exportfs -i command to export it and then do exportfs -r to remove it.
# exportfs -v -i -o ro,no_root_squash 192.168.1.0/24:/mnt/cdrom
Bootparams
All the locations for directories above needed to be exported through NFS. They also need to be transmitted to the client with the bootparamd file. Add the configuration for the client to the /etc/bootparams file.
# cat >> /etc/bootparams
balrog root=kraken:/pub/solaris/Solaris_8/Tools/Boot \
install=kraken:/pub/solaris \
rootopts=:rsize=32768 boottype=:in
Problems
Some people have reported problems with interaction between the Linux NFS daemon and Solaris. I didn't have any trouble with the Linux 2.4.18 kernel so this may have been fixed in more recent kernels. You can try changing the rsize option to 8192 if you run into problems.
The first couple of times that I tried booting Solaris, the boot process would hang after loading the kernel but before loading the installer. After some investigation of the scripts in /sbin in the root filesystem, I discovered that the /sbin/get_netmask program was handing. Since it didn't seem to be doing anything important (the interface has already been properly configured), I moved it out the way.
# cd /pub/solaris/Solaris_8/Tools/Boot
# cd sbin
# mv get_netmask get_netmask.boot
Booting
Now you are ready to boot the Solaris installer over the network. Enter the boot command from the OpenPROM prompt.
ok boot net-tpe - install
Install
If everything is working correctly, the Solaris interactive installer should appear on the console. Most of the questions it asks are pretty straightforward and I didn't have any trouble installing Solaris once I got it to boot.
It should be possible to automate the installation using Jumpstart. Jumpstart uses a couple of files to configure the install. These are also exported through NFS and parameters added to the bootparams file. The scripts used to set this up automatically won't work on Linux but it should be possible to do it manually.
Related
Network Boot Server for SPARC
Copyright © 2005 Ian Burrell
All content on this website, unless otherwise noted, is licensed under a Creative Commons License.
Last Modified: 2006-08-17
发表评论
-
ZFS Pool 里增加硬盘做镜像
2010-04-04 09:02 5378ZFS 第一次出现在 OpenSolaris 上是 ... -
ZFS 的简单使用
2010-04-04 08:59 1745ZFS 的简单使用 ZFS 被 Sun 称为史上最 ... -
opensolaris FAQ
2010-04-03 19:17 1456Frequently Asked Questions ... -
opensolaris 让pkg 更快,请用中国源...
2010-04-03 18:33 2036想写一些关于opensolaris的文章很久了,不过一直没有这 ... -
在osol jeos 中使用zfs
2010-04-03 15:54 1905ZFS 作为 Solaris 10 和 O ... -
在osol jeos 中查看硬件信息 1
2010-04-03 15:38 1297. 查看cpu的状态 # psrinfo -v ... -
在osol jeos 中安装 程序 2
2010-04-03 14:10 2207Part2: Creating NAS server on O ... -
在osol jeos 中安装 程序 1
2010-04-03 14:08 1376Part 1: Check JeOS readiness as ... -
Opensolaris 在xen中的PVM 捷径。
2010-04-03 13:47 1379一直以下,都想在Xen(oracle vm)中安装opens ... -
solaris 10 一句话
2009-09-09 08:59 3177环境:SunOS szxsolaris 5.10 s10_6 ... -
Sun xVM hypervisor
2008-03-16 08:30 1557Here is Sun's announcement on S ... -
Setup the Solaris diskless root server
2008-03-16 08:12 2149Creating an OpenSolaris domUIn ... -
磁带机
2008-03-06 14:11 14911. device: root@nwtgz # ls /dev ... -
Solaris 初步设置
2008-03-05 21:14 25571.配置root用户SSH登陆 # vi /etc/ ... -
Enabling SSH on a Minimal Solaris 10 Install
2008-03-03 16:37 1582If you need to manage a Solaris ... -
Install sis900 on solaris 10 i386
2008-03-02 22:34 13881. download from : http://homep ... -
Export sunos 5.8 NFS to linux client
2008-02-26 20:57 21811. export dir: root@nwtgz # cat ... -
Installation of Solaris 10_x86 on qemu (linux host
2008-02-25 21:45 2239Normally installation of guest ... -
通过pkg-get在Solaris上通过互联网安装软件
2008-02-25 21:41 27181. 安装CSWpkggeg (Install CSWpkgg ... -
OpenSolaris Xen domU
2008-02-25 11:39 2123This page describes the install ...
相关推荐
Oracle Solaris 8 Network Interface Guide-144
Sun 内部network 课程,详细说明和解释。虽然是几年前的,但变化不大。
5. **网络配置文件**:Linux的网络配置通常在/etc/ntp.conf、/etc/sysconfig/network-scripts/目录下,而Solaris的配置文件位于/etc/inet/ntp.conf、/etc/inet/inetd.conf等。接口相关的设置分别在/etc/hostname.{...
Oracle Solaris 11.3 Introduction to Oracle Solaris 11.3 Network Services-22
Oracle Solaris 11.2 Introduction to Oracle Solaris 11.2 Network Services-44
Oracle Solaris 11.1 Managing Oracle Solaris11.1 Network Performance-200
Solaris8,Solaris9,Solaris10,Solaris 11 iso镜像下载
Windows Solaris HP-UNI AIX Linux主流操作系统安全加固规范
Oracle Solaris 10 SystemAdministrationGuide:Network Services-672
《Oracle10g在Solaris 10 x86平台上的安装指南》 Oracle数据库是全球广泛使用的数据库管理系统,尤其在企业级应用中占据主导地位。Oracle 10g是Oracle公司推出的一个重要版本,提供了许多增强的功能和性能优化。在...
在使用《Oracle Solaris 10 8/11 Installation Guide: Network-Based Installations》时,用户会了解到以下关键知识点: 1. **网络配置**:在开始安装前,需要确保网络环境的设置正确,包括IP地址、子网掩码、网关...
8. **网络诊断工具**:内置的`dtrace`工具是Oracle Solaris的一大特色,它能实时分析系统和网络性能,帮助管理员快速定位和解决问题。 9. **Zones和Network Containers**:Oracle Solaris 11.1 提供了Zones(轻量级...
Oracle Solaris 8 IP Network Multipathing Administration Guide-45
### Linux到Solaris 10操作系统迁移指南 #### Solaris 10 操作系统与 Linux 概述 Solaris 10 操作系统是专为关键业务应用设计的一款操作系统,以其成熟、稳定、安全和高性能著称。Solaris 的核心是基于与 POSIX ...
Linux_Solaris_NFS 配置是指在 Linux 和 Solaris 操作系统中配置 NFS(Network File System)的过程。NFS 允许不同的操作系统之间共享文件系统,以提高资源利用率和网络存储效率。在本文中,我们将详细介绍 Linux_...
《Oracle Solaris 8 IP Network Multipathing Administration Guide》是一本由Sun Microsystems公司出版的专业指南,主要针对Oracle Solaris 8操作系统中的IP网络多路径管理进行深入讲解。这本指南发布于2000年10月...
《Oracle Solaris8 IP网络多路径管理指南-41》是针对Oracle Solaris操作系统中IP网络多...具体的章节内容、操作步骤和技术细节需参考完整的《Oracle Solaris8 IP Network Multipathing Administration Guide-41》文档。
Solaris8,Solaris9,Solaris10,Solaris 11 iso镜像下载 这里提供资源地址:https://pan.baidu.com/s/1fa2Ga3BN9oh08wUOLK3PnQ 可以先登陆地址试试,在地址有效状态下,再使用积分提取密码
【从 Solaris 迁移到 x86 上的 Linux 指南】 在 IT 领域,操作系统的选择和迁移是一项重要的任务,特别是对于那些依赖特定技术栈的企业来说。本指南将探讨从 Solaris 迁移到 x86 架构上的 Linux 系统的关键知识点,...