[Solved]Can`t create internet connection

I`ve installed arch linux on my lenovo y550, but, because I was too sleepy to think yesterday so I didn`t configure the /etc/rc.conf and /etc/resolv.conf file (I installed from CD). All in all i`ve got neither wired nor wireless connection to the internet (everything works fine on windows 7, the same laptop). I think the problem is there are no proper drivers. After typing
/sbin/ifconfig
I only get the lo, no eth0. I`ve configured the web connection on my PC 2 years ago, the same router and web provider, but I didn`t have any problems then, so I guess it must laptop issue.
#lspci | grep -i net
06:00.0 Network controller: Intel Corporation WiFI Link 1000 Series
07:00.0 Ethernet controller: Broadcom Corporation NetLink BCM57780 Gigabit Ethernet PCIe (rev 01)
I tried the modprobe pcnet32 and modprobe tg3 and modprobe broadcom. In theory, 2.6.33 kernel should support the driver tg3 for BCM57780 (?? Maybe the information I`ve found is wrong??)
still no result. (I didn`t modify the /etc/rc.local with those modprobes yet).
Any Idea what should I do to get the web access?
I`ve found this post:http://bbs.archlinux.org/viewtopic.php?pid=774219
and I`m curious how to install the iwlwifi-1000-ucode without internet connection to get my wireless going.
Any help with either connection?
SOLVED:
thx karol for solution. add this in your /etc/rc,local
modprobe -r tg3
modprobe broadcom
modprobe tg3
and add dbus in daemons. Also, while installing archlinux, you can find iwlwifi 1000 series in additional packages on cd (necessary for wireless connection)
Last edited by Xyzk (2010-07-19 16:10:56)

the error i`ve been talking about:
::starting network
eth0:unknown interface: No such device
[FAIL]
::Mounting Network Filesystems [DONE]
there are drivers ofr linux on the producent webpage, http://www.broadcom.com/support/etherne … nk_k57.php
But I`ve got no idea how to access my pendrive from console. I can copy it to the HDD using PartedMagic liveCD, so I`m most likely going to try this. What`s funny, even though eth0 doesn`t work on parted magic using DHCP, wireless network works perfectly fine :]
# /etc/rc.conf - Main Configuration for Arch Linux
# LOCALIZATION
# LOCALE: available languages can be listed with the 'locale -a' command
# HARDWARECLOCK: set to "UTC" or "localtime", any other value will result
# in the hardware clock being left untouched (useful for virtualization)
# TIMEZONE: timezones are found in /usr/share/zoneinfo
# KEYMAP: keymaps are found in /usr/share/kbd/keymaps
# CONSOLEFONT: found in /usr/share/kbd/consolefonts (only needed for non-US)
# CONSOLEMAP: found in /usr/share/kbd/consoletrans
# USECOLOR: use ANSI color sequences in startup messages
LOCALE="pl_PL.UTF-8"
HARDWARECLOCK="localtime"
TIMEZONE="Europe/Warsaw"
KEYMAP="pl"
CONSOLEFONT=lat2-16.psfu.gz
CONSOLEMAP=
USECOLOR="yes"
# HARDWARE
# MOD_AUTOLOAD: Allow autoloading of modules at boot and when needed
# MOD_BLACKLIST: Prevent udev from loading these modules
# MODULES: Modules to load at boot-up. Prefix with a ! to blacklist.
# NOTE: Use of 'MOD_BLACKLIST' is deprecated. Please use ! in the MODULES array.
MOD_AUTOLOAD="yes"
#MOD_BLACKLIST=() #deprecated
MODULES=()
# Scan for LVM volume groups at startup, required if you use LVM
USELVM="no"
# NETWORKING
# HOSTNAME: Hostname of machine. Should also be put in /etc/hosts
HOSTNAME="archlinux"
# Use 'ifconfig -a' or 'ls /sys/class/net/' to see all available interfaces.
# Interfaces to start at boot-up (in this order)
# Declare each interface then list in INTERFACES
# - prefix an entry in INTERFACES with a ! to disable it
# - no hyphens in your interface names - Bash doesn't like it
# DHCP: Set your interface to "dhcp" (eth0="dhcp")
# Wireless: See network profiles below
#Static IP example
#lo="lo 127.0.0.1"
#eth0="eth0 192.168.1.101 netmask 255.255.255.0 broadcast 192.168.1.1"
#INTERFACES=(lo eth0)
# Routes to start at boot-up (in this order)
# Declare each route then list in ROUTES
# - prefix an entry in ROUTES with a ! to disable it
#gateway="default gw 192.168.1.1"
#ROUTES=(!gateway)
#ROUTES=(gateway)
# Enable these network profiles at boot-up. These are only useful
# if you happen to need multiple network configurations (ie, laptop users)
# - set to 'menu' to present a menu during boot-up (dialog package required)
# - prefix an entry with a ! to disable it
# Network profiles are found in /etc/network.d
# This now requires the netcfg package
#NETWORKS=(main)
#DHCP
eth0="dhcp"
INTERFACES=(eth0)
gateway="default gw 192.168.0.1"
ROTUES=(!gateway)
# DAEMONS
# Daemons to start at boot-up (in this order)
# - prefix a daemon with a ! to disable it
# - prefix a daemon with a @ to start it up in the background
DAEMONS=(syslog-ng network netfs crond)
Last edited by Xyzk (2010-07-10 17:42:02)

Similar Messages

  • Can't create Internet connection to My Mac Using USB

    Hey All,
    Recently i bought a new Mini Router Huawei 4G LTE E5732 Router, it was connected easily using WI-Fi to my Mac (MacBook Pro Retina, 13-inch, Late 2013)
    installed the latest update OS X Yosemite 10.10.2, I tried to be connected through the USB port on the Mac using USB connection in the Network option on the System preferences, but i was surprised that there is no such a choice !!
    Please can anyone help me, it is affecting my job !

    It was solved, Thanks to the Apple customer service
    They advice me to go to this link and it solved everything after updating the App version installed for the Mini Router on my Mac
    http://consumer.huawei.com/en/mobile-broadband/mobile-wifi/support/downloads/e53 72-en.htm

  • Can not create the connection in the enrironment!!

    hello,every one:
    please see the following code:
              Environment *env = Environment::createEnvironment(Environment::OBJECT);
              Connection *conn = env->createConnection(userName,password,connectString);
    try
    //use the conn
              catch (SQLException &ex)
                   env->terminateConnection(conn);
                   Environment::terminateEnvironment(env);
                   throw;//re-throw
              env->terminateConnection(conn);
              Environment::terminateEnvironment(env);
              Environment *ev = Environment::createEnvironment(Environment::OBJECT);
    //the program stopped here,display i can not create the new connection
              Connection *cn = ev->createConnection(userName,password,connectString);
              ev->terminateConnection(cn);
              Environment::terminateEnvironment(ev);
    I have terminated the connection and the environment,then why I can not create the
    connection in the new environment?
    I have tried several times,if you connect the same database as the former,then it
    does not work,but if you connect a new database ,it can create the new connection!
    plus:I don't want to use conection pool .
    Can I have some method to solve the problem?
    Please help me!
    Thanks a lot in advance!
    tony from China

    Hi Tony,
    This similar sample works perfectly fine for me. Can you
    retry with this?
    #include <iostream>
    #include <occi.h>
    using namespace std;
    using namespace oracle::occi;
    int main()
            Environment *env = Environment::createEnvironment(Environment::OBJECT);
            Connection *conn = env->createConnection("scott","tiger","inst1");
            try
            //use the conn
            catch (SQLException &ex)
                    env->terminateConnection(conn);
                    Environment::terminateEnvironment(env);
                    cout<<ex.getMessage();
            env->terminateConnection(conn);
            Environment::terminateEnvironment(env);
            Connection *cn;
            Environment *ev;
            try{
            ev = Environment::createEnvironment(Environment::OBJECT);
            cn = ev->createConnection("scott","tiger","inst1");
            catch (SQLException &ex)
                    ev->terminateConnection(cn);
                    Environment::terminateEnvironment(ev);
                    cout<<ex.getMessage();
            ev->terminateConnection(cn);
            Environment::terminateEnvironment(ev);
    }Rgds
    Amogh

  • NEED HELP! can't create mysql connection in DW MX 2004

    I re-format my computer last week and after reformatting i
    install my PHP Triad and Dreamweaver MX 2004, but i can't create
    mysql connection using DW wizard, i already follow the step:
    1. create / manage site
    2. choose document type
    3. set up testing server ( i use php mysql @ localhost)
    and when i create new connection (fill the hostname,
    username, password, and select databases) it failed and show
    message "unidentified error occur".
    it never happen before (before i re format my computer).
    can anyone help me how to solve this problem.
    sorry for my bad english i came from Indonesia,
    thx before
    rgrds
    zhastro

    I re-format my computer last week and after reformatting i
    install my PHP Triad and Dreamweaver MX 2004, but i can't create
    mysql connection using DW wizard, i already follow the step:
    1. create / manage site
    2. choose document type
    3. set up testing server ( i use php mysql @ localhost)
    and when i create new connection (fill the hostname,
    username, password, and select databases) it failed and show
    message "unidentified error occur".
    it never happen before (before i re format my computer).
    can anyone help me how to solve this problem.
    sorry for my bad english i came from Indonesia,
    thx before
    rgrds
    zhastro

  • Acrobat XI can't find internet connection

    I have had Adobe CC subsciption for some time now, but recently my Acrobat stopped working. it says that it can't find internet connection. But all the other Adobe applications installed through the CC application manager are working fine.
    I've had numerous chats with Adobe agents, and with my office's IT guys, and there has been no solution.
    We use corporate anti-virus, firewall and proxy scrypts. I've had all Adobe links whitelisted that were given to me by the Adobe agents. The hosts file doesn't have any Adobe info. I've tried reinstalling n+1 number of times, with various options such as selected boot and such, and still no solution.
    Why is it that all other Adobe applications installed under the CC work fine, but Acrobat doesn't?
    It's sad that if one buys a subscription and loses internet, one would lose all the products as well. One should be allowed to work on the applications, internet connection or not.
    Please help with this Acrobat that has created a circus for me here.

    Have you also asked in http://forums.adobe.com/community/acrobat to find out if someone there has the same problem... and a solution?

  • Can you create multiple connections in smartview? for PROD and DEV?

    Hi,
    We have a production and development hyperion planning. In Smartview, we have successfully connected to PROD but can we create another connection to DEV?
    or do we keep replacing the URL?
    thanks

    I think from 11.1.2.2 onwards the ability to add servers in Shared Connection is removed and an enhancement is filed to have that ability.
    You can use private connection to connect to different instances
    http://DEV:19000/aps/APS for Essbase
    http://DEV:19000/HyperionPlanning/SmartView HyperionPlanning
    If you are on 11.1.2.3 you can create an XML file and use that as your Shared Connection
    Essbase Labs: Smart View News
    Regards
    Celvin
    http://www.orahyplabs.com

  • Can you combine internet connections ?

    I've heard that you can combine 2 internet connections in to one faster one, fisrst is this posible with the MacPro using the two gigabit ethernet ports on the back (MacPro Mid 2012)? To do this i've heard that you need a special Router, a Link Aggregation Control Protocol supported one which is about $500, but im not sure if that is the kind of router you need. Anyone who got experience in this who could help me ?
    Thanks,

    Your Mac Pro 65lb tower with dual Ethernet ports does indeed support Link Aggregation.
    It requires a Router or Switch that supports Link Aggregation Protocol, which is an expensive industrial-strength device.
    OS X Mountain Lion: Combine Ethernet ports
    If you do not have enough of a "mix" of traffic from multiple sources, some readers have complained that their speedup was disappointing. At least in older versions, connections were made in a permanent virtual circuit fashion, assigning each connection to one side or the other, and not using the full bandwidth for a single connection. Fail-over is supported just fine.
    This also begs the question of where do you get anything else to connect to, that runs at 2Gbits/sec. Most Internet connections can't go anywhere near that fast, so it will not improve your download speeds.
    Are you doing a lot of local File Transfers? Fiber channel may be more appropriate to support a Network Attached Storage device.

  • I can't get internet connection even after wi-fi set is done with cisco

    I can't get internet connection even after wi-fi set up is done with cisco

    Not sure what Cisco is but if you are having problems with your wifi this link might help
    On the iPad...  tap Settings / General / Reset / Reset NetworkSettings.
    Or here is a link that might help http://support.apple.com/kb/TS1398

  • How can remove "MMS" Internet Connection

    Hi, any one can help me I had installed fMMS and it also created "MMS" Internet connection. Then I had uninstalled fMMS but the MMS internet connection still exists. How can I remove this ?
    Thanks
    Solved!
    Go to Solution.

    matthew_maude wrote:
    download fAPN, and use that
    And here is the link to it at maemo.org:
    http://maemo.org/downloads/product/Maemo5/fapn
    If you found this post helpful, please click on the green "Kudos!" star. Cheers!

  • How can I share internet connection of iPad?

    Under the following considerations:
    - An iPad3 has established a 3G/4G data connection.
    - There is a wireless access-point working.
    - iPad is connected to that wireless access-point.
    - There is a notebook (or desktop whatever) also connected to same wireless network.
    ... is it possible to share iPad's internet connection across the network and how?
    Important note:
    I am not looking for iPad to perform like a wireless hot-spot. IMHO I am looking for a gateway/router application for iPad.

    You can't.
    If you don't want to use your local WiFi you could try using a mobile phone that allows you to create a personal hotspot.

  • Can't share internet connection with iPad since installing Time Capsule

    Until today, I've used Earthlink's DSL service with a Netopia DSL modem with an ethernet connection to my iMac through a Linksys WRT54G router. My iPads (1 & 2) have been able to simultaneously share the internet connection over wifi.
    Today, I installed a Time Capsule and removed the old Linksys router. I'm still using Earthlink's DSL service with the same Netopia DSL modem, and I still have an ethernet connection to my iMac, but through the Time Capsule now. I can get online from the iMac without problems.
    But my iPad can no longer connect as they did previously. When I try to visit a website using Safari on the iPad, I get the message, "The Internet connection s currently in use by another computer. Enter your DSL Account logon password to switch the Internet connection to this computer." If I enter the DSL account password on the iPad, I can get online, but then the iMac is knocked offline.
    How can I go back to sharing the connection so that any of the devices can get online at the same time?

    I found another thread right after I posted and seem to have solved the problem following the steps described there (plus a couple more).
    https://discussions.apple.com/message/15758093#15758093

  • IPhone 3GS can't share internet connection with a windows 7 64 bit version?

    I have an iPhone 3GS with the latest iOS installed, then the personal hotspot option is ON and it shares internet connection to a laptop with Windows 7, 32 bit version and with the latest version of itunes installled (10.6.1.7).
    But when I connect this same iPhone to another laptop with Windows 7, 64 bit version with the latest version of itunes 64 bit, there is no internet sharing, no error, no signal of fails, it is just as if the hotspot option were OFF.
    Its is posible to share internet from iPhone 3GS to a PC with Windows 7, 64 bit version?

    Hey there @slee , welcome back
    I would suggest trying the steps in this guide for the installation troubles you are having on your one specific Windows 7 computer.
    Windows 7: The Progress Bar on the Software Installation Stops or Stalls
    You can also try disabling your firewall while you run the installation to see if that helps.
    Let me know the results!
    Have a great Thursday
    R a i n b o w 7000I work on behalf of HP
    Click the “Kudos Thumbs Up" at the bottom of this post to say
    “Thanks” for helping!
    Click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution!

  • How can I get internet connectivity with my iPod Touch cabled to my PC?

    Most devices "tether" to a computer (PC or iMac) for internet connection. I cannot find any reference in the user manual on getting internet access from the connected PC to the "tethered" ipod touch. How can I accomplish this?

    Hi,
    The iPhone 3G and iPhone 3GS support Internet tethering over a USB cable, as described here: http://support.apple.com/kb/HT3574.
    The iPod touch can connect over a Wi-Fi network, as mentioned here: http://support.apple.com/kb/HT2031.
    If your PC has a wireless card, you may be able to create an Ad-Hoc Wi-Fi network that can share the Internet access to the iPod touch.
    You can also get a wireless router, like an Airport base station http://www.apple.com/wifi/.
    -Jason

  • Can't Create TNS-connections for different Oracle Homes

    I've installed Oracle 9.2 client and also the Oracle XE 10g Database on my computer. So there are two files "tnsnames.ora"
    (C:\oraclexe\app\oracle\product\10.2.0\server\NETWORK\ADMIN, C:\Programme\ORA92\network\ADMIN). By creating a new connection with
    "TNS" option there is only the content of the XE-tnsnames.ora file. How can I choose the tnsnames.ora in Oracle 9.2 Home?
    Edited by: @chris on 15.05.2009 15:54
    Is there a preference for SQL-Developer to choose any installed Oracle Client?
    Is there a file where I can configure a different Oracle Client for SQL Developer?
    Remark: My "Windows XP - Path" settings are: C:\Programme\ORA92\BIN;C:\oraclexe\app\oracle\product\10.2.0\server\bin;...
    Edited by: @chris on 03.06.2009 19:12
    No comments since 2 weeks :-(
    So I think there is no possibility to select an installed Oracle client when creating "connections" in SQL Developer.
    Would anybody else like to have this feature in future releases of SQL Developer?
    PS: In "SQL Navigator" (by Quest Software) you can select your Oracle Client when creating a connection.

    I had this same issue only with SSMS 2005 x86.
    I unchecked the "Allow inprocess" and I was able to connect.
    You will need the security "Be made using this security context" with the U/P that you mention
    "+same userid and pwd which I use in SQL* Plus to connect to same oracle database+"
    Hopefully you will get pass that issue. The issue I have now is that I can't do a select on
    one of the linked tables.

  • Can't share internet connection via firewire - missing something obvious?

    I have my G4 933 connected via ethernet to a Dynalink RTA100+ DSL modem/router. Would like to share this internet connection with anther G4 450 (time warp here) over firewire until I sort a proper router... both are running on 10.4.11
    I connected the computers with firewire cable and configured the firewire ports Manually (as I couldn't get DHCP to populate them in the right range).
    Tried initially turning on Personal File and Web Sharing on each, but couldn't get a Ping to go through g4 to g4, even though I can see each firewire port's ip in each other's routing table info...
    Also turned on Internet Sharing over Firewire port from Ethernet but G4 450 can't connect.
    Read somewhere that you can't do both, so have reverted to just trying to get the Internet Sharing working (as that's all the kids really want on their computer!)
    Dug around in the modem for ages tried it in Bridge mode, couldn't connect either computer to internet then so have gone back to normal PPP settings with DHCP.
    *Port settings*
    _The G4 933:_
    Built-in Ethernet:
    Type: Ethernet
    Hardware: Ethernet
    BSD Device Name: en0
    IPv4 Addresses: 192.168.1.3
    IPv4:
    Addresses: 192.168.1.3
    Configuration Method: DHCP
    Interface Name: en0
    Router: 192.168.1.1
    Subnet Masks: 255.255.255.0
    DNS:
    Server Addresses: 192.168.1.1
    DHCP Server Responses:
    Domain Name Servers: 192.168.1.1
    Lease Duration (seconds): 0
    DHCP Message Type: 0x05
    Routers: 192.168.1.1
    Server Identifier: 192.168.1.1
    Subnet Mask: 255.255.255.0
    Proxies:
    Proxy Configuration Method: Manual
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: Yes
    Gopher Proxy Enabled: No
    HTTP Proxy Enabled: No
    HTTPS Proxy Enabled: No
    Auto Discovery Enabled: No
    RTSP Proxy Enabled: No
    SOCKS Proxy Enabled: No
    Ethernet:
    MAC Address: blahdy blah
    Media Options: Full Duplex
    Media Subtype: 100baseTX
    Built-in FireWire:
    Type: FireWire
    Hardware: FireWire
    BSD Device Name: fw1
    IPv4 Addresses: 192.168.3.1
    IPv4:
    Addresses: 192.168.3.1
    Configuration Method: Manual
    Interface Name: fw1
    Subnet Masks: 255.255.255.0
    Proxies:
    Proxy Configuration Method: Manual
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: Yes
    Auto Discovery Enabled: No
    Ethernet:
    MAC Address: blahdy blah
    Media Options: Full Duplex
    Media Subtype: autoselect
    _On the G4 450:_
    Built-in FireWire:
    Type: FireWire
    Hardware: FireWire
    BSD Device Name: fw0
    IPv4 Addresses: 192.168.3.2
    IPv4:
    Addresses: 192.168.3.2
    Configuration Method: Manual
    Interface Name: fw0
    Subnet Masks: 255.255.255.0
    Proxies:
    Proxy Configuration Method: Manual
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: Yes
    Auto Discovery Enabled: No
    Ethernet:
    MAC Address: blahdy blah
    Media Options: Full Duplex
    Media Subtype: autoselect
    Now, nothing is actually connecting at all, yet when I do a Netstat of the Routing Table info, the firewire IPs are showing up on each G4...but still no ping, no internet.
    All suggestions appreciated as I've been searching around the internet to no avail today!
    Cheers
    Rose

    Hi Rose,
    You can't Manually set the IPs for Internet Sharing according to Apple, (I've done it, but not consistently),
    You do want the G4/450 to use DHCP, the G4/933 will likely end up handing out an IP to the 450 of 192.168.2.4, (one higher in the 3rd & 4th place, and wont work if the 933 started out as x.x.2.x), but it must do it itself to keep track of NAT within itself.
    True you can't do both File & Internet Sharing at once.
    On the G4/933, en0/Ethernet needs to be dragged to the top of Network>Show:>Network Port Configurations. On the G4/450, fw0/Firewire needs to be dragged to the top of Network>Show:>Network Port Configurations.
    Internet Sharing needs to be OFF on the 450 & rebooted if it was ON.
    As far as the Setting not sticking, there may be more, but Trash these two files on the 933 then Reboot...
    /Users/YourUserName/Library/Preferences/com.apple.systempreferences.plist
    /Library/Preferences/com.apple.sharing.firewall.plist

Maybe you are looking for

  • Is my HD completely dead or can it be saved?

    Hi everyone, I have a MacBook Pro (13 inch, Mid-2010) running OS X Mavericks 10.9 and it seems the HD has died. I'd be incredibly grateful if anyone could offer me some help and advice. I was using my MacBook as usual this morning. I had a few work d

  • How to show check box in ALV grid??

    Hi All,      I am using an option edit in the feild catalogue which allows me to change the values in a few columns in the ALV list. What I want is to be able to show a check box in a few columns which user can check and use the value X in the progra

  • Mail program no longer opens

    I have two problems that simulatenously appeared on one of my co-worker's eMac. She complained that she could no longer open her mail program or safari. I was able to set up firefox on her computer and it works fine. Both mail and safari will appear

  • Installing Yosemite without Apple Id

    I'm selling my iMac, and want to reinstall Yosemite, but it prompts me to input an apple id to do so. If I proceed, will this link my apple Id to the computer again? I don't want to go through the hassle of selling a computer with no OS, and explaini

  • PS CS4 and Nikon D800E

    I am unable to downlode images from the D800e to PS CS4 or LR 2.7. It tells me the file is not recognized? I use a Duel Mac pro G4. My wife just got a Macbook pro Operating OS9 and has LR 5. The files downlode fine for lightroom but not PS. What is p