Archiso-live-2009-12-08 live CD not usable

I have recently downloaded the archiso-live-2009-12-08 live CD but I am unable to use it.  I did a md5 check of the iso, and that is ok.  It boots into something that remotely resembles a desktop.  I have a Nvidia 9600GT graphics card for which X installs/configures the 'nv' driver, but the desktop is not configured correctly. I have a Logitech wireless mouse which I thought might be the cause, so I rebooted with a ps2 mouse, but that was even worse.  Safe graphics mode (vesa) works fine.
PC specs:
00:00.0 Host bridge: Intel Corporation 82G33/G31/P35/P31 Express DRAM Controller (rev 10)
00:01.0 PCI bridge: Intel Corporation 82G33/G31/P35/P31 Express PCI Express Root Port (rev 10)
00:1b.0 Audio device: Intel Corporation 82801G (ICH7 Family) High Definition Audio Controller (rev 01)
00:1c.0 PCI bridge: Intel Corporation 82801G (ICH7 Family) PCI Express Port 1 (rev 01)
00:1c.1 PCI bridge: Intel Corporation 82801G (ICH7 Family) PCI Express Port 2 (rev 01)
00:1d.0 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #1 (rev 01)
00:1d.1 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #2 (rev 01)
00:1d.2 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #3 (rev 01)
00:1d.3 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #4 (rev 01)
00:1d.7 USB Controller: Intel Corporation 82801G (ICH7 Family) USB2 EHCI Controller (rev 01)
00:1e.0 PCI bridge: Intel Corporation 82801 PCI Bridge (rev e1)
00:1f.0 ISA bridge: Intel Corporation 82801GB/GR (ICH7 Family) LPC Interface Bridge (rev 01)
00:1f.1 IDE interface: Intel Corporation 82801G (ICH7 Family) IDE Controller (rev 01)
00:1f.2 IDE interface: Intel Corporation 82801GB/GR/GH (ICH7 Family) SATA IDE Controller (rev 01)
00:1f.3 SMBus: Intel Corporation 82801G (ICH7 Family) SMBus Controller (rev 01)
01:00.0 VGA compatible controller: nVidia Corporation G94 [GeForce 9600 GT] (rev a1)
03:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168B PCI Express Gigabit Ethernet controller (rev 02)
pretty standard, I would say   CPU is a E7400 (2.8GHz Core2Duo).  Memory (RAM) is 3GB.
I have a Kubuntu 9.10 install and the mouse/graphics works flawlessly on that, so the problem is not hardware related.
BTW ctrl-alt-F1 gives me a usable command prompt, so the problem seems to be X.
Last edited by dabbler (2009-12-16 16:54:53)

MadTux wrote:Are you sure about the nv driver, since in the blog entry about archiso live it reads as if xf86-video-nouveau has been removed (you have to look into the comments to find this information). So my guess would be that you are at the moment left with the vesa driver, except you installed nvidia drivers yourself.
It's definitely the 'nv' driver, and installed by default, just checked.  The only way I can use the CD is to select 'safe graphics mode' on startup which gives me the 'vesa' driver, which is better than nothing.  I also removed the 9600GT graphics card and tried the onboard graphics (Intel 82G33/G31 Express), with no problems.
Rather strange.

Similar Messages

  • Archiso-live with slax support

    I found a way to make archiso scripts work like the old arch-live. By mounting the slax ext2 initrd has root filesystem. The idea is that archiso-live will be like the older arch-live based on slax but will have the archlinux kernel instead of slax kernel.
    I couldn't do this before cause the linux-live scripts would not load right in initramfs with archlinux kernel cause of missing kernel modules that would have been build in kernel with slax kernel.
    I got the system working by making a aufs union with /tmpfs/initrd and /real_root folder. Anyway i think i will share the code for you to understand:
    mount_tmpfs ()
    #if [ "x${ramdisk_size}" = "x" ]; then
    ramdisk_size="25M"
    #fi
    msg -n ":: Mounting tmpfs, size=${ramdisk_size}..."
    mount -t tmpfs -o "size=${ramdisk_size}" tmpfs /tmpfs
    msg "done."
    # args: ext2 file image
    _mnt_ext2_file()
    msg "::: Adding new real_root branch: ${1}"
    /bin/modprobe -q loop max_loop=255 >/dev/null 2>&1
    mkdir -p ${2}
    if ! /bin/losetup "/dev/loop${LOOP_NUM}" ${1} > /dev/null 2>&1; then
    echo "ERROR: Cannot mount loop device /dev/loop${LOOP_NUM}"
    echo " Couldn't mount all addons"
    break
    fi
    /bin/mount -t ext2 "/dev/loop${LOOP_NUM}" ${2}
    export LOOP_NUM=$(( $LOOP_NUM + 1 ))
    run_hook ()
    export LOOP_NUM="0"
    if [ "x${from}" != "x" ]; then
    BOOT_MOUNT="/live"
    fi
    if [ ! $(ls /dev/loop*) ]; then
    echo "Creating loop device nodes."
    mknod /dev/loop0 b 7 0
    mknod /dev/loop1 b 7 1
    mknod /dev/loop2 b 7 2
    mknod /dev/loop3 b 7 3
    mknod /dev/loop4 b 7 4
    fi
    if [ -f "${BOOT_MOUNT}/initrd" ]; then
    mount_tmpfs
    mkdir -p "/tmpfs/initrd"
    _mnt_ext2_file "${BOOT_MOUNT}/initrd" "/tmpfs/initrd"
    /bin/modprobe -q squashfs >/dev/null 2>&1
    /bin/modprobe -q sqlzma >/dev/null 2>&1
    /bin/modprobe -q unlzma >/dev/null 2>&1
    /bin/modprobe -q aufs brs=1 >/dev/null 2>&1
    /bin/mount -t aufs -o nowarn_perm,br:/tmpfs=rw aufs /real_root
    /bin/mount -t aufs -o remount,add:1:/tmpfs/initrd=ro aufs /real_root
    cp -Raf /lib/modules /real_root/lib/modules
    udevpid=$(/bin/minips -C udevd -o pid=)
    [ "x${udevpid}" != "x" ] && /bin/kill -9 $udevpid 2>&1 >/dev/null
    #Yep, we're bailing out here. We don't need kinit.
    msg ":: Passing control to Archlinux Initscripts...Please Wait"
    /bin/umount /sys
    /bin/umount /proc
    exec /bin/run-init -c /dev/console /real_root /sbin/init
    fi
    Right the moment its a ext2 filesystem of initrd on the livecd. I plan on changing it to squashfs so we can save 6mb or so. I copy the kernel modules cause i don't want anything missing even though its mostly has everything the linux-live scripts. Just don't want risk crashing the system with out some module that was build slax but not in archlinux.
    Anyways i hope this helps with the development of archiso.
    EDIT: Fix a typo. tmpfs can only understand M not MB for size.
    Last edited by godane (2009-01-13 19:50:08)

    I have just released the newer archiso-live with slax support.
    http://godane.wordpress.com/2009/01/13/ … 2-release/
    you can get the build scripts here:
    http://github.com/godane/archiso-live/tree/master
    I hope this helps.

  • FMS 4.5 and FMLE errors (hds-live is not defined).

    I came across this thread, http://forums.adobe.com/message/4929789, because I am testing a new FMS 4.5 server and I'm having several problems with live streaming.
    Issue 1: Server does not stream after FMLE is stopped.
    I set up a test FMLE 3.2 stream last week that we hope to use for an event 4 days from now. When I initially set up the FMLE live stream everything worked fine, so I stopped the encoder and started to design a site to play the live stream. When I restarted the FMLE stream today nothing worked, and looking in the corelog I found this error: "Restarting the recording after 2.000000 days is not allowed". That error led me to the thread linked above and to several others.
    I have tried the various suggestinons in this thread, http://forums.adobe.com/thread/959974, including:
    Forum Post 15: changing livestream and liveevent names: changing the names works, but this is not a good solution since I am building web pages to publish these streams and that would require changing the links on the pages everytime we want to live stream.
    Fourm Post 18. using query paramter: livestream?adbe-live-event=liveevent&adbe-record-mode=record (does not work).
    Finally, I deleted all of the previous entries that were created in the following folder:
    H:\Program Files\Adobe\Flash Media Server 4.5\applications\livepkgr\events\_definst_\
    I restarted FMLE and the streams worked again. What can I do to fix this? As I mentioned above, using the "record" query parameter in FMLE did not work. I would hate to have to delete all of the old events every time that I want to start a new stream.
    Issue 2: hds-live streaming does not work. I set up a multi-bit rate live streaming page following these diretions, http://help.adobe.com/en_US/flashmediaserver/devguide/WSd391de4d9c7bd609-52e437a812a3725df a0-8000.html, but I cannot get hds-live streaming to work. Every connection is rejected and the edge.log file has the following error: Connection rejected by server Reason (hds-live) is not defined. I tried the suggestions posted by Manish on this thread, http://forums.adobe.com/message/4929789, (post no. 8: deleting the entries livepkgr/streams, restarting the server, clearing the browser cache), but I cannot get hds-live streaming to work. I think this problem might be related the the <MaxRestartGap> issue described above, but the steps that resolve that problem only work to enable hls-live streaming and have not solved the hds-live issues.
    What should I do?
    Thank you for you help.

    Issue 1: "...please change the <streamsynchronization> enabled to true in FMLE config.xml."
    This was one of the first steps in the Adobe help document that I followed to set up live streaming. Setting synchronization to true has not resolved the issue.
    The Apache error log is humongous, so I will try to narrow down the issue so that I can provide the relevant errors sometime next week. It seems that changing the names of the live stream events (or deleting the old ones) is a temporary solution for now. I won't have time to really work on this until next week so I'll come back and give you an update of my progess then.
    Thank you for the help. 

  • Form created in Muse now live and not working

    I would greatly appreciate some assistance (and fast as my project is live and not functioning).  Basically, I created and edited a nice website with a form in Muse, then published to BC to chop it into code, then Ftp'd the files to myself and then over to the client's servers.  Everything looks great, except the form I added is not functioning.  Muse chat support has told me: 
    Surjeet: It is automatically integrate with BC when published on BC
    Surjeet: But if you want to host it on other servers then you have to make some changes on the onclick of the form.
    However, he couldn't tell me what changes need to be made because
    Surjeet: Unfortunately, HTML / CSS / JavaScript and Site implementation related issues are outside the scope of our support boundaries.
    Then he tell me that
    Surjeet: The webForm will be functionable only when published on BC.
    AAACK!  I really need help.  Adobe shouldn't allow you to add a form if it is not going to work on client servers -  they are touting this product as for designers with no tech knowledge. 
    Can anyone please please tell me what code or ? on the form needs to be changed, added, deleted, etc. to get it to function on my client's server?  Project is due today!
    Thank you in advance!

    Link
    Cant help without a link.
    You may have modified the form to knock off severl things to make it work correctly.

  • MOVED: MSI Live Update not working Windows XP Professional 64bit Edition!!!

    This topic has been moved to Operating Systems.
    MSI Live Update not working Windows XP Professional 64bit Edition!!!

    Thank you so much. I just want to say I really appreciate when people do take the time to post me in return. So I really mean it, Thank You.
    A quick question. You see, I have been upgrading my computer. I installed a Belkin USB USB Card (high speed 2.0) cause I needed more USB ports. Then I checked for compatable RAM and upgraded my RAM from 512MB to 2Gigs. Everything alright.
    Now, I have checked for processors that are compatable with my board K9VGM-V (MS-7253). And MSI's chart says mine is compatable with the AMD Athlon 2x 6000 (3.0Ghz) *IF* I use the 89 watt and not the 125 watt. Here is a good URL for the processor details I found:
    http://www.cpu-world.com/CPUs/K8/AMD-Athlon%2064%20X2%206000+%20-%20ADA6000IAA6CZ%20(ADA6000CZBOX).html
    Now do you have any tips and I will probably have to flash to BIOS for sure after this upgrade won't I?

  • Live stream not live- plays like VOD

    Hi All,
    I'm not sure if this belongs in the AS3 forum or the streaming forum, but here it is.
    I wrote a pair CS3/AS3 players to send and receive a live video stream (webcam) from a browser.  The first is called broadcaster.  It makes a NetConnection to my server, publishes a stream and attaches the camera and microphone.  This works fine. The stream is live.
    The second is originally called receiver.  Using an instance of flash.media.video on the stage it also makes a NetConnectin, attaches a stream and calls play.  This also works, BUT the receiver stream is not live.  It starts playing at time=0 like a VOD.
    --- broadcaster.swf ---
    var connection:NetConnection = new NetConnection()
    connection.connect(connect_url);  // my server/application/instance
    var stream = new NetStream(connection);
    stream.publish("mass", "live");  // live means stream live without recording on the server
    stream.attachCamera(Camera.getCamera());
    stream.attachAudio( Microphone.getMicrophone() );
    --- receiver.swf---
    connection.connect(connect_url);
    var stream = new NetStream(connection);
    video1.attachNetStream(stream); // video1 is on the stage (flash.media.video not FLVPlayback)
    stream.play("mass", -1, -1, true); // -1 means play live stream only, -1 means start at 'wherever the live stream is'
    How can the receiver not obey the -1, -1 parameters especially if the broadcaster is not recording on the server.  How can i see the beginning of the stream!
    I believe I read that the flash plugin 9.0+ uses the on2 codec, and I also saw some discussion about on2 not able to stream live -- or not live from the browser plugin, only the flash media encoder.
    Can anybody tell me what is going on?
    Thanks
    Ted

    I tried streaming with the Adobe Flash Media Live Encoder3 instead of my Broadcater.swf.  This connects fine and pushes h.264 no problem.
    But the reciever is still seeng VOD not Live video.
    Is there something wrong with my receiver?

  • N97 windows live will not load as well as others p...

    well as listed above
    i,m having a real problem getting anything to load. just wondering if i,m the only one who,s getting this problem? & could do with someone,s help please.
    to start with windows messenger live will not load at all. the message i,m getting is
    (this application requires the network usage. please start again under network coverage.)
    the problem is i,ve got phone internet & wifi coverage so why is it coming out with this? any ideas
    also i cant get many of the games that was installed to work either. that message is after hanging for a long period of time.
    (you are currently in a no coverage area. please try again later)
    didnt know i had to have internet coverage to play these games..
    last of all the menu button light is constantly glowing on & off
    i,m with 3uk & cant get any help from them at all. even the latest firmware update is not allowed as yet on my phone. was told by them that if i got the latest firmware my phones warranty would be void.
    great service indeed.
    although the games are not important. messenger is & would appreciate any feed back please...
    many thanks Ray

    Ok I can tell you the solution to your problem.
    Windows Live MSN and SKYPE are free with 3 UK, which means that you can use them even if you are not paying for internet on your phone.
    The problem with this is that you can ONLY use them via 3 network.
    When you are at home your phone is probably defaulting to WIFI and the MSN and SKYPE will try than, so instead of getting a message "ERROR YOur should use 3"  the MSN jsut hangs and does nothing.  With the old firmware you had to uninstall Windows MSN and install it again in order ofr the MSN to work again. With the new one, once you are out of scope of your WIFI it works.
    So you have a few options to use a Messenger.
    1. Do not use your WIFI (turn it off, or whatever) and then you can use Windows LIVE MSN
    or 
    2. Because you probably like me are paying the £5 for internet, forget about Windows MSN and use a different that works with WIFI and 3.  A few of them are "PALRINGO", "EBUDDY", "FRING", etc.
    Is a pain but that's the reason, for some reason the phone can not handle having some apps like the browser, etc using the WIFI and a separate connexion with 3 for SKYPE and Windows LIVE MSN.
    Good luck let me know how it goes
    N97 Black unlocked using the 3 Network (UK). Product Code 0586308. Firmware V20.0.019. Made In Finland.Custom version V20.019.235.10.

  • Windows live does not receive emails

    Windows Live works fine on my family computer.
    Windows Live does not receive emails from my btinternet account on my laptop any more (it sends ok I think)
    This happened in March. After talking to someone in India the other day who suggested that my laptop did not have enough RAM (not so), I eventually managed to uninstall WLive, reinstalled, then used the automatic set up on BT and called the account a new name. IT WORKED...all my emails turned up on Windows Live. Then it STOPPED WORKING again.
    I honestly cannot fathom this. Any ideas????
    (I have just tried using the automatic set up again, using the same account name, but it just says that the account already exists).
    Errors are in essence:
    0x800CCC90
    ERR inactivity timeout
    WLive error 0x800420CD
    WLive mail error 0x800CCC0F
    I got the automatic tester to test email account, but no fault found.
    All suggestions gratefully received. I had no luck last time I tried on this Forum, but giving it another go.

    yjm wrote:
    Windows Live works fine on my family computer.
    Windows Live does not receive emails from my btinternet account on my laptop any more (it sends ok I think)
    This happened in March. After talking to someone in India the other day who suggested that my laptop did not have enough RAM (not so), I eventually managed to uninstall WLive, reinstalled, then used the automatic set up on BT and called the account a new name. IT WORKED...all my emails turned up on Windows Live. Then it STOPPED WORKING again.
    I honestly cannot fathom this. Any ideas????
    (I have just tried using the automatic set up again, using the same account name, but it just says that the account already exists).
    Errors are in essence:
    0x800CCC90
    ERR inactivity timeout
    WLive error 0x800420CD
    WLive mail error 0x800CCC0F
    I got the automatic tester to test email account, but no fault found.
    All suggestions gratefully received. I had no luck last time I tried on this Forum, but giving it another go.
    Hi.
    I personally never let the "system" set up email automatically, it doesn't always get the servers or ports correct.
    However, what you could try is to login to webmail in case there is a stuck/corrupt email in the Inbox. You can move them to a temporary online folder and retry Windows Mail. If that works, you can try moving one email at a time into the webmail Inbox.
    Do you keep all the emails on the server by the way ?
    http://www.andyweb.co.uk/shortcuts
    http://www.andyweb.co.uk/pictures

  • USF on iTunes U collections such as Sustainability and iteach Initiative are not displaying new items even days after they are uploaded to the collections. The items show in the Preview of the collections but not Live view. not displaying

    USF on iTunes U collections such as Sustainability and iteach Initiative are not displaying new items even days after they are uploaded to the collections. The items show in the Preview of the collections but not Live view. not displaying

    Greetings;
    This seems to an ongoing issue (see related discussion link).  We've been experiencing the same update lag since last Friday.  The new additions to the Collection appear and are accessible in both the iPad and iPhone applications, but even though they additions appear in "Quick View", the material doesn't appear in the Collection itself.  Apple is aware of the issue and is investigating.  All the best...
    Syd Rodocker
    Tennessee State Department of Education
    https://discussions.apple.com/message/15461971#15461971

  • MOVED: MSI live update not supported on Win XP 64

    This topic has been moved to Operating Systems.
    MSI live update not supported on Win XP 64

    Yes you are right.  The system drive will always be Drive C, but I am not sure if D will be my storage drive or the other sytem drive.  I could always try and find out but just havn't.
    In the past, I had lots of virtual drives (partitions), and HDD's (as many as 10 total IDE devices).  But when the larger drives became more affordable, I prefer running with just 2, the system and storage for the sake of simplicity.  Since I do beta testing, I have having to reformat and reinstall a lot, so this system has worked great for me.

  • XBOX Live section not available under Games Menu

    Hi,
    I'm using a Nokia Lumia 800, with Vodafone Romania as mobile provider.
    When I go to Games, XBOX Live section is not available. So any games that I install and should be listed under this section cannot be accessed ( even if the installation wizard for the games completes succesfully).
    When I bought the phone I remember I unpined the XBOX Live tile from the initial screen; I dont remember hitting Uninstall..
    How can I restore XBOX Live tile/section?
    Many thanks.
    Solved!
    Go to Solution.

    Hello, xbox live is not available in Romania, I also use an win phone in Romania and cannot buy or play xbox live titles.

  • Power Shell Script for Check Remote machinces are live or not

    I have required a Power Shell Script for Check multiple Remote machines are live or not.Please guide me

    This will do it.
    http://gallery.technet.microsoft.com/Ping-IP-Adress-Range-d90ce82d
    &#175;\_(ツ)_/&#175;

  • Ive just upgraded my late 2009 macbook, and things are not working properly. First of all, when I started the computer first time after installing Mountain Lion, some message advised me that some files were impossible to install.

    Ive just upgraded my late 2009 macbook, and things are not working properly. First of all, when I started the computer first time after installing Mountain Lion, some message advised me that some files were impossible to install. Once I wrote my password, and for now on, everytime I start the session, another window advise me that "Java SE 6" is missing, due that, the computer can't run some "CS5Service Manager". If I try to install it, the download ends with an error. If finally, you skip the istallation, you arrive to the dock, but the menu bar at the top of the screen doesn't show up.
    In addition, my trackpad doesn't works either. I can move the arrow but i can't click anywhere, probably because the option of clicking by touching is disabeled and I can't performance a regular click.
    I'll be very glad if someone know what the heck is happening with my computer. Anyway, I'm going to the genius bar next Saturday. Thx!

    We're sorry.
    We can't find the article you're looking for.
    Please return to the Apple Support homepage.
    Sigh.

  • HT3964 2009 macbook pro superdrive will not load discs

    2009 Macbook pro superdrive will not accept discs. The loading mechanism appears not to be responding. The mechanism may be jammed as it will not allow the disc to be fully inserted. Last time I played a disc I had trouble ejecting it. I managed to get disc out can't remember how. Think the disc must have partially ejected and I managed to pull it out. Can anyone help?

    Hi kayj128,
    Thanks for using Apple Support Communities.  This article has steps for troubleshooting the SuperDrive built in to your Macbook Pro:
    Apple Computers: Troubleshooting the slot-loading SuperDrive
    http://support.apple.com/kb/HT2801
    Doesn't accept discs
    Be sure to check your disc to make sure it is flat. You can check this by putting the disc upside-down on a flat surface. If the disc is bowed up on any side or in the center, do not use the disc because it might get stuck in the drive. Do not use discs that have anything attached to them or dangling from them (such as "sweeper" or cleaning discs).
    If the drive struggles when you put in a disc or stops part-way, carefully look at the disc for labels that may be interfering. If there aren't any raised labels then try putting the disc in a few more times.
    Try another disc to see if the issue is being caused by a specific disc.
    Make sure you insert the disc far enough for the drive mechanism to activate. You need to insert discs nearly all the way before the drive will activate and pull them in. If you don't completely insert a disc, the drive will reverse and push the disc back out.
    Allow the drive one or two seconds to accept the disc while it is fully inserted.
    Reset the System Management Controller (SMC).
    If the drive repeatedly does not accept discs, contact Apple or an Apple Authorized Service Provider, or make an appointment with an Apple Retail Store.
    Cheers,
    - Ari

  • My macbook pro mid 2009 keyboard and trackpad is not working.

    My macbook pro mid 2009 keyboard and trackpad is not working. it was working perfectly fine a week ago and it stopped. i tried using a external wireless mouse and keyboard but only the mouse will work!! They keyboard lights up when it is booting up but when i try to sign in, nothing types or the mouse wont work. i am fine if the mouse doesnt work because i can use an external one but can someone please help me?!

    The best option is an appointment at an Apple store genius bar and have the technicians diagnose the problem.
    Ciao.

Maybe you are looking for

  • Memory speed of fx 5200 cards

    I can't find out detailed spec of MSI's fx 5200 cards: - does any of these have 64-bit memory interface (as some 5200 cards do)? - what is speed of cpu and memory For instance, what's difference between FX5200-TD64 and FX5200-T64? First one has dvi o

  • Daexport from forms to relational database (sql)

    Hi, We have setted an export rule (dataexport) trough which our users do the right click on the form and export data to an sql table. I would like to know which is the followed order of eported dimensions. Does it depends on performance setting? or w

  • [SOLVED] "The superblock could not be read..."

    Good Evening. In the beginning, I want to apologise if my English isn't as correct and comprehensible as I want it to be. I am rather clueless Linux user with penchant for learning. I have used Slackware for some time, but I wanted to try out Arch be

  • LSMW for recalculate costs for PM Orders

    Hi, Apologies if this is in the wrong thread but we have a requirement using LSMW to recalulate the costs on numerous PM Orders using transacation IW32. Has anybody come across this and if so did the LSMW batch input when run, recalculate the costs o

  • SOLVED: network issues cant even get it to work (Arch inside VirtualBx

    Friends: I upgraded my Arch Linux inside my Virtualbox and now I cant reach any network. uname -r  gives 3.9.5-1-ARCH I also see the following info Dependency failed for dhcpcd on eth0. I am not sure what else can be done. Please help my network brea