- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Installation Red Hat AS 4 NC7170/e1000
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-17-2005 08:40 PM
10-17-2005 08:40 PM
Installation Red Hat AS 4 NC7170/e1000
I have to install a NC7170 on a Red hat AS 4 box, the *.txt is not very clear about this.
Somewhere it is said that I don't need Kernel source code....
all I need is to do:
rpmbuild -bbb e1000xxxxx.spec ???
then install the binary package ???
then /etc/modules.conf ???
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-18-2005 12:10 AM
10-18-2005 12:10 AM
Re: Installation Red Hat AS 4 NC7170/e1000
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-18-2005 12:49 AM
10-18-2005 12:49 AM
Re: Installation Red Hat AS 4 NC7170/e1000
Could you confirm the procedure ?
rpm -bb SPECS/e1000xxxx.spec
rpm -ivh RPMS/i386/e1000xxxx.i386.rpm
vi /etc/modules.conf
reboot
Thanks again
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-18-2005 01:55 AM
10-18-2005 01:55 AM
Re: Installation Red Hat AS 4 NC7170/e1000
2. Download kernel source RPM for RedHat AS 4.
3. Build rpm:
rpm -ivh kernel-source-
rpm -ivh e1000*.src.rpm
cd /usr/src/linux-
make mrproper
make -e KERNELRELEASE='uname -r' oldconfig
make -e KERNELRELEASE='uname -r' dep
make depend
cd /usr/src/redhat/
rpm -bb SPECS/e1000.spec
4. Install the rpm from /usr/src/redhat for the driver:
rpm -ivh --force RPMS/i386/e1000-
5. Add new line to /etc/modules.conf
alias ethX e1000
Regards,
Sergey
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-19-2005 07:48 PM
10-19-2005 07:48 PM
Re: Installation Red Hat AS 4 NC7170/e1000
so no need to compile
Thanks again