Install driver for rtl8111d of mother board GA-880GM-D2H on solaris10_rtl8111.tar.gz_MM22GG的博客-程序员宅基地

技术标签: rtl8111d  server  system  debian  makefile  compiler  solaris  

本文转载于 http://www.doxer.org/learn-linux/install-driver-for-rtl8111d-of-mother-board-ga-880gm-d2h-on-solaris10/#more-590

 

 

I’ve installed solaris10 on my DIY computer which has a mother board of GA-880GM-D2H. After installation, the server boot ok, but when I checked with ifconfig -a, it only showed lo0 – the loop NIC, this means that the system cannot detect the NIC of rtl8111d which is integrated into mother board of GA-880GM-D2H.

After searching a lot on google, I’ve found this url: http://homepage2.nifty.com/mrym3/taiyodo/eng/. Under “15. gani driver for Realtek rtl8169 rtl8110 rtl8168 rtl8101 PCI/PCI-Express GbE chipset” of that page, I downloaded gani-2.6.8.tar.gz which is for AMD64(you can use isainfo -n to check the platform of your cpu). Then it’s time to compile the package to solaris.

Firstly, unzip the file:

gunzip -cd gani-2.6.8.tar.gz | tar xf -

Make links to correct binary directory and Makefile according to yourconfiguration:

#cd gani-2.6.8

# rm obj Makefile

#ln -s Makefile.${KARCH}_${COMPILER} Makefile

# ln -s ${KARCH} obj

where ${KARCH} is the result of `isainfo -n`, and ${COMPILER} is ”gcc” or “suncc” which you want to use to make the driver.

Now, time to make and make install:

/usr/ccs/bin/make

Testing before installation:

#./adddrv.sh

#modload obj/gani

#devfsadm -i gani

#ifconfig gani0 plumb

#ifconfig -a #you will see an entry for gani0

/usr/ccs/bin/make install

OK, then, you need set ip address for your newly installed NIC gani0:

#vi /etc/hostname.gani0
doxer
#chmod 644 /etc/inet/netmasks
#vi /etc/inet/netmasks

192.168.0.11 255.255.255.0

#chmod 644 /etc/inet/hosts

#vi /etc/inet/hosts
192.168.0.11 doxer loghost
#chmod 644 /etc/inet/ipnodes
#vi /etc/inet/ipnodes
192.168.0.11 doxer loghost
#vi /etc/defaultrouter
192.168.0.1

#hostname doxer
After all the steps, reboot the system: init 6.

You should now see your NIC device:

#dladm show-link

If you want to set this through interactive mode, you can try to use sys-unconfig utility.

Related Posts

  1. Install vhcs2 panel under debian(shell scripts)
  2. Install nginx reverse proxy server under debian(bash shell)

 

版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://blog.csdn.net/MM22GG/article/details/7449862

智能推荐

NOI题库答案(1.5 编程基础之循环控制)(1—20题)_一共有两行,第一行为整数n(1 ≤ n ≤100),表示参加这次考试的人数。第二行是这n个_moodfriend的博客-程序员宅基地

NOI网址:http://noi.openjudge.cn/01:求平均年龄总时间限制:1000ms 内存限制:65536kB描述班上有学生若干名,给出每名学生的年龄(整数),求班上所有学生的平均年龄,保留到小数点后两位。输入第一行有一个整数n(1<= n <= 100),表示学生的人数。其后n行每行有1个整数,表示每个学生的年龄,取值为...

保护企业Email 从增强Exchange服务器安全性开始_普通网友的博客-程序员宅基地

   在许多公司中,Email很快成为了重要的应用程序,不过邮件服务器必须连接Internet才能收发Email。可能你也知道,Internet绝不安全。想破坏你服务器的人经常上Internet,所以安全运行Exchange服务器的秘诀之一就是不给那些人任何机会破坏你的服务器。本文讲述一些帮助你保护Exchange服务器安全的技术。  我在防御什么?  你可能想知道,通常Exc

细数中国大学里的30个怪现状 _qwer11123的博客-程序员宅基地

一怪:恋爱无忌  走在大学里,看看周围成双成对。现在的学校环境都特别的优美,什么人工湖阿、小树林的。一到晚上都是情侣们约会的好去处。以前上高中,有点这苗头的都被视为早恋,是老师家长的严打对象。到了大学似乎百无禁忌,大家都对这个见怪不怪了。前些日子吃 班饭,导员开始就来了一句:“希望四年之后吃散伙饭,大家都带着家属来啊!”。有个学校就更猛了,学校迎新晚会,主持人是毕业于这个学校的著名主持人。上来就来

(一)Spring Cloud 子项目整合介绍_琉璃588的博客-程序员宅基地

Spring Cloud为未来互联网企业提供分布式基础设施解决方案。

网络配置和文件服务器_流光的咸鱼的博客-程序员宅基地

IP地址:Ipv42*32     Ipv6 tcp     网络通讯协议udp   用户数据报协议  常见网络端口:20  21ftp服务文件共享22ssh服务安全远程网络管理23telnet服务25 smtp:简单邮件传输协议发信110pop3:邮局协议收信80www网页服务3306mysql端口53DNS端口/etc/servi

AttributeError: module 'tensorflow' has no attribute 'log'_修炼之路的博客-程序员宅基地

查看安装的TensorFlow的版本import tensorflow as tf print(tf.__version__)如果是2.0的版本请修改为更低的版本试试,比如1.4或者以下版本

随便推点

MySql按周,按月,按日分组统计数据_mysql 根据 时 日 月 分组 连续_tb跨时代的博客-程序员宅基地

DATE_FORMAT(date,format) 根据format字符串格式化date值。下列修饰符可以被用在format字符串中: %M 月名字(January……December) %W 星期名字(Sunday……Saturday) %D 有英语前缀的月份的日期(1st, 2nd, 3rd, 等等。) %Y 年, 数字, 4 位 %y 年, 数字, 2 位

小程序开发文档_小程序开发文档有哪些_weixin_41469374的博客-程序员宅基地

https://open.weixin.qq.com/cgi-bin/showdocument?action=dir_list&t=resource/res_list&verify=1&id=open1489144594_DhNoV&token=&lang=zh_CN

YCB-VIDEO DATASET_ycb数据集_Flying Stone的博客-程序员宅基地

YCB-VIDEO DATASET提供物体姿势和分割真值标记以物体为中心的数据集通常因为是人工标注的,所以数据量很小。例如常用的LINEMOD数据集提供大约1000图像的手工标记为数据集中的15个对象。虽然这样的数据集对于评估基于模型的姿态估计技术很有用, 它比用于训练最先进的深度神经网络的典型数据集小了好几个数量级。解决这个问题的一个办法是用合成图像来增加数据。然而,必须注意确保性能在真实场景和渲染场景之间的通用性。A. 6D位姿标记为了避免手动注释所有的视频帧,我们只在第一帧中手动指定物体的姿势

web前端技术分享:常用JavaScript框架有哪些?_js框架有哪些_程序员的小傲娇的博客-程序员宅基地

常用JavaScript框架有哪些?对于前端开发工作者来说,JavaScript绝对是绕不开的一个点,可以所前端的大部分动态交互都是由JS完成,所以学好JavaScript基本上你就成功了一半。下面小千就来为大家介绍一个常见并且实用的JavaScript框架,看看其中有没有你的偏爱。

no matching function for call to 'find(std::list<int>::iterator,std::list<int>::iterator, int&)'_Harrytsz的博客-程序员宅基地

no matching function for call to 'find(std::list::iterator,std::list::iterator, int&amp;)'问题只需要添加上对算法库的头文件引用即可:#include ,再次编译就OK了!

vue.js】定义vue实例的四个常用选项——filters、computed、methods、watch_小屁孩大帅-杨一凡的博客-程序员宅基地

&amp;lt;!DOCTYPE html&amp;gt;&amp;lt;html lang=&quot;en&quot;&amp;gt;&amp;lt;head&amp;gt; &amp;lt;meta charset=&quot;UTF-8&quot;&amp;gt; &amp;lt;title&amp;gt;vue01&amp;lt;/title&amp;gt; &amp;lt;scrip