Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 158726 Details for
Bug 242572
Realtek 8169 (Netgear GA311 etc.) based gigabit cards freeze startup
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
startup script for realtek NIC so system doesn't freeze
local-network-eth1 (text/plain), 802 bytes, created by
Eric Kerby
on 2007-07-07 22:09:30 UTC
(
hide
)
Description:
startup script for realtek NIC so system doesn't freeze
Filename:
MIME Type:
Creator:
Eric Kerby
Created:
2007-07-07 22:09:30 UTC
Size:
802 bytes
patch
obsolete
>#! /bin/bash ># ># Startup script for activating the local network interface ># This is needed since allowing the card to start automatically ># on Fedora systems causes the computer to freeze ># ># chkconfig: 2345 75 90 ># description: Start/stop/restart local network interface > ># Source function library. >. /etc/init.d/functions > >cd /etc/sysconfig/network-scripts > >case "$1" in > start) > echo -n "Starting eth1: " > ./ifup eth1 > touch "/var/lock/subsys/local-network-eth1" > echo "OK" > ;; > stop) > echo -n "Stopping eth1: " > ./ifdown eth1 > rm -f "/var/lock/subsys/local-network-eth1" > echo "OK" > ;; > reload|restart) > $0 stop > $0 start > ;; > *) > echo "Usage: $0 start|stop|restart|reload" > exit 1 >esac >exit 0
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 242572
:
156603
|
156759
|
156815
|
156816
|
156817
| 158726 |
159748
|
160162
|
160173
|
160185
|
160277
|
160280
|
160474
|
160507
|
161084