Bug in new Arch 2008.04-RC?

I just burned the new Arch AMD64 2008.04-RC to a CD and gave it a go on my Mac Pro.
It runs and boots!!  Quite an accomplishment since most Linux LiveCD's (including old versions of Arch) do NOT boot properly on my Mac Pro Tower.  It usually hangs with a black screen of death.
But very time I boot off the new AMD 64 2008.04-RC CD, the tray on my second DVD Burner Drive ejects during the udev probing stage.
Are others have this problem?  Is this a bug?
Rob
P.S.  The only other distro that seems to boot off this mac pro is Ubuntu Gusty and my drives do NOT open on this distro during bootup.

Yes, Pierre Schmitz noted this on mailinglist. File a bug.

Similar Messages

  • My new Arch - Dropbox problem

    Hello Arch community,
    I just spent the last 2-3 days installing, downloading, reading this forum and the wiki and configuring my new Arch installation on my Dell Studio 1557 and I now have a nice fast little gnome environment that fits my needs
    First of all: Arch Linux is really great. I've been a pure Windows user for the last few years and I tried out some linux stuff on my notebook lately. Arch Linux was the only one that really gave me the chance to build my own system without hours of compiling and without having tons of crap installed that I don't use. I'm not totally finished yet, but that is another thing...
    Now I have one problem that bugs me atm:
    I installed Dropbox from the AUR (not the nautilus version) and it basically works... but only if i start it after networkmanager has established my wireless connection
    Right now it's like: Dropbox starts, tries to connect... wireless connection ist not established yet -> no connection possible; Then networkmanager is doing his work and connects to my wireless network -> connection ist there, but Dropbox resides in the "Connecting" state and it doesn't change -> no sync. I have to stop and restart it, then it instantly connects and syncs my folder.
    Is there any (easy) way to make Dropbox start after connecting to the wireless network?
    PS: Please excuse any grammatical mistakes, my native language is german
    Last edited by zwoggel (2010-05-10 10:30:46)

    manzdagratiano wrote:
    onemyndseye wrote:
    I was affected by this problem and wrote the follow bit of code as a workaround:
    /usr/bin/dropboxd
    #!/bin/sh
    # Copyright 2008 Evenflow, Inc., 2010 Dropbox
    # Environment script for the dropbox executable.
    start_dropbox() {
    PAR=$(dirname $(readlink -f $0))
    OLD_LD_LIBRARY_PATH=$LD_LIBRARY_PATH
    LD_LIBRARY_PATH=$PAR:$LD_LIBRARY_PATH
    kill -9 $(pidof dropbox) >/dev/null 2>&1
    exec $PAR/dropbox $@ &
    do_dropbox() {
    start_dropbox >/dev/null 2>&1
    while [ 1 ]; do
    sleep 5
    ERROR="$(net_test)"
    if [ -n "$ERROR" ]; then
    LAST_ERROR=1
    else
    if [ -n "$LAST_ERROR" ]; then
    # Connection seems to be up but
    # last cycle was down
    LAST_ERROR=""
    start_dropbox >/dev/null 2>&1
    fi
    fi
    done
    net_test() {
    TMP1="$(ifconfig |grep "inet addr:" |grep -v "127.0.0.1")"
    [ -z "$TMP1" ] && echo "error"
    do_dropbox
    Hope this helps someone
    Woohoo!!! Many many thanks! I was plagued by this issue, and this worked superbly for me.... I just modified the script a little for error checking like you mentioned - with a `ps ax' to check for whether dropbox is running before trying to kill it. I love the fact that the script would restart dropbox in the event of a connection loss/reconnection. The modified script is as follows:
    #!/bin/sh
    # Copyright 2008 Evenflow, Inc., 2010 Dropbox
    # Environment script for the dropbox executable.
    start_dropbox() {
    PAR=$(dirname $(readlink -f $0))
    OLD_LD_LIBRARY_PATH=$LD_LIBRARY_PATH
    LD_LIBRARY_PATH=$PAR:$LD_LIBRARY_PATH
    TMP1=`ps ax|grep dropbox|grep -v grep`
    if [ -n "$TMP1" ]; then
    kill -9 $(pidof dropbox) >/dev/null 2>&1
    fi
    exec $PAR/dropbox $@ &
    do_dropbox() {
    start_dropbox >/dev/null 2>&1
    while [ 1 ]; do
    sleep 5
    ERROR="$(net_test)"
    if [ -n "$ERROR" ]; then
    LAST_ERROR=1
    else
    if [ -n "$LAST_ERROR" ]; then
    # Connection seems to be up but last cycle was down
    LAST_ERROR=""
    start_dropbox >/dev/null 2>&1
    fi
    fi
    done
    net_test() {
    TMP1="$(ifconfig |grep "inet addr:" |grep -v "127.0.0.1")"
    [ -z "$TMP1" ] && echo "error"
    do_dropbox
    Many thanks also to varg04444 for suggesting his very simple script - I did not go with that only because it would not restart dropbox in the event of a reconnection.
    Since ifconfig is deprecated now, I made a small change in the script to use ip command instead:
    #copyright 2008 Evenflow, Inc., 2010 Dropbox
    # Environment script for the dropbox executable.
    start_dropbox() {
    PAR=$(dirname $(readlink -f $0))
    OLD_LD_LIBRARY_PATH=$LD_LIBRARY_PATH
    LD_LIBRARY_PATH=$PAR:$LD_LIBRARY_PATH
    TMP1=`ps ax|grep dropbox|grep -v grep`
    if [ -n "$TMP1" ]; then
    kill -9 $(pidof dropbox) >/dev/null 2>&1
    fi
    exec $PAR/dropbox $@ &
    do_dropbox() {
    start_dropbox >/dev/null 2>&1
    while [ 1 ]; do
    sleep 5
    ERROR="$(net_test)"
    if [ -n "$ERROR" ]; then
    LAST_ERROR=1
    else
    if [ -n "$LAST_ERROR" ]; then
    # Connection seems to be up but last cycle was down
    LAST_ERROR=""
    start_dropbox >/dev/null 2>&1
    fi
    fi
    done
    net_test() {
    TMP1="$(ip addr |grep "inet " |grep -v "127.0.0.1")"
    [ -z "$TMP1" ] && echo "error"
    do_dropbox

  • Bug in SQL Server 2008 R2 for Change Data Capture (CDC)

    I'm pretty sure I've encountered a bug in SQL Server 2008 R2 that's been fixed in 2012, regarding changing the design of a database using CDC.  With CDC disabled on a table with sys.sp_cdc_disable_table, I can add a column or change a column's data
    type, but when I call sp_rename, on 2008 R2 I'm getting "Cannot alter column 'xxx' because it is 'REPLICATED'.", even though the table's properties shows "Table is replicated" as False.  In 2012, works fine.
    Even calling sys.sp_cdc_disable_db didn't prevent this error.

    Feel free to file a request on http://connect.microsoft.com
    Balmukund Lakhani | Please mark solved if I've answered your question, vote for it as helpful to help other users find a solution quicker
    This posting is provided "AS IS" with no warranties, and confers no rights.
    My Blog |
    Team Blog | @Twitter
    Author: SQL Server 2012 AlwaysOn -
    Paperback, Kindle

  • Bug in New Editor?

    Hi,
    We have been upgrading from 4.7 to ECC6 . Currently we are collecting various bugs related SE38 Editor, If anybody face any bugs related new SE38 editor. Please paste it here. Your response will much helpful to me to create a list of bugs in editor.
    Your help is appreciated.
    Thanks

    Hi,
    I am giving few more thread related to this , May this will be useful for others also.

  • Bug in New Firmware V50.0.005 for Nokia 5800 Xpres...

    Hi I am facing  some bug in new Firmware V50.0.005
    1) In the music library it is not showing any song.(i am having arround 500 songs in memory card)
    2) If i try to refresy the library, it will not complete the process. (i.e. continuesly it will show refreshing and i have manuly stoped after 1 hour). and still no songs in all songs list.
    3)While playing radio it will hang after some time.(After 15 min to half an hour). you have to restart  your phone to close that radio application. (no other go)
    If any Solution is there for this please let me know.
    Thanks in advance
    Ssandesh T S

    For the radio problem, You may have to try to reinstall your firmware, or failing that, you may have to do a reset.
    For the music library:
    1. Connect your 5800 to you PC in Mass Storage Mode
    2. On your PC you will need to have allowed to “Show” hidden files, do this from Explorer/Tools/ Folder Options/ View and select “Show hidden files and Folder”
    3. Open your SD memory card/Removable Disk in My Computer on PC
    4. Go to E:\ Private there you will see 3 folders 101f8857, 101ffca9 and 10281e17 .
    5. Go to Private\101f8857\Cache\E there you will see .dat files. Delete all the .dat file BUT NOT the E Folder. Shown above right
    6. Now go to Private\101ffca9 there you will see another .dat file, Delete the dat file NOT the folder.
    7. Finally go to Private\10281e17 There you should see 4 files 2 are Mp3 files other are Podcast files. Delete mpxv2_2.db & mpxv2_2.db-journal for Mp3 files list and Delete pcv6_1.db & pcv6_1.db-journal for Podcast files list. Shown above right
    8. Close all windows and disconnect your Phone. Go to Music Library and it should automatically start a refresh.
    If you find my post helpful please click the green star on the left under the avatar. Thanks.

  • Bug in new firmware 7.0 for 6300 cannot create per...

    There is bug in new firmware 7.0 for nokia 6300 and maybe all 40 series.
    I am not able to create access point which is necessary to access internet with java applications.
    When I go Settings -> Configuration -> Personal config.sett. -> Add -> Access point (but also if I choose any other from list)
    Then i go back and there is no new access point. In previous version of firmware it created access point.
    Do anyone know about this issue ?
    How can I tell to Nokia support that there is this bug ?
    thanx for replies

    I went to local Nokia service, and they told me that probably it was wrongly flashed. So I reinstalled firmware two more time, but it always have the same problem. Is there someone with 6300 that have the newest firmware and can test this ?
    thank you
    I will put this phone to service and see what they will do.

  • Premiere CC 2014.1 bugs in new UI

    Is anybody noticed that bugs in new Premiere UI? The first I noticed is when i use bezier curves on audio in track, the line is always strait. It shows curved when the line is near left end screen of timeline, and when you move the clip to the right then is strait again. The secound one is when i use audio effects on audio. The tab in wich is the EQ plugin is messed up and shows half of the plugin. Also the thumbnails in bins must be adjustable in much smaller size as it is now when the slider is all way down to smalest size. This new UI sucks because the fonts are too big when looked on 27" monitor.

    There is a known bug in the H.264-Bluray export. I assume it has nothing to do with your issue, but perhaps it will give you something to consider.
    https://forums.adobe.com/message/6848505#6848505
    It appears due to a malformed xmpses file. It creates a problem on import into Encore, and I think it should do the same upon import into Architect or it would be ignored entirely. The test is to delete the xmpses file and see if that avoids the issue.

  • Announcing some new Arch Linux Schwag offerings

    Hey All,
    I wanted to introduce you to some new Arch Linux Schwag offerings I've been cooking up over the past little while.
    I'm currently sold out of case badges, and Simo has faithfully shipped his last order.  I'm trying to think of a way to compensate him, he's done so much work for me on the shipping front and all I ever offered him was dinner, (granted, he's a starving student, and dinner was hopefully much appreciated).  When I reorder stickers, probably in the new year, I will be shipping them myself, from Canada, so domestic prices will be a touch higher.
    Now, onwards to Schwag:
    It's no secret that I'm the odd man out on the tacos vs poutine debate.  I know you all will come around to my way of thinking eventually, but in the meantime, check out the new schwag where you can proudly pick your piece.  I've also added a few other new t-shirt design, mostly as your suggestions.  Check out the new products line at zazzle to place your order:
    http://www.zazzle.com/archlinux/gifts?c … 1284817680
    I think most of you know about the laptop bags, jewellery, and case badges (currently out of stock) selling at: http://schwag.archlinux.ca/
    I've added a few handmade items of my own invention to the mix, including wooden and soapstone sculptures, keychains, and coasters, all featuring our favourite distro's logo:
    http://schwag.archlinux.ca/product/coaster/
    http://schwag.archlinux.ca/product/soapstone_sculpture/
    http://schwag.archlinux.ca/product/sculpture/
    http://schwag.archlinux.ca/product/keychain/
    I'm particularly proud of the soapstone sculptures, they look incredible.  I'm not sure I can give them up.  The keychains will also make great stocking stuffers this Christmas season, so remind your friends to shop Arch Schwag!
    In addition, I would like to announce a preview of the Arch Linux Handbook.  This should be retailing in a couple weeks, and will be available from both CreateSpace and Amazon.com.  The handbook is basically a quick restyling of the epic beginner's guide in the wiki.  You can preview it here:
    https://www.createspace.com/3398103
    That's all for now!
    Dusty

    Runiq wrote:Cool stuff. Like the coasters, and the allanbrokeit shirt is stylish.
    That's Acecero's contribution, as he implies. :-)
    Also, there's a typo in the handbook's headline: "A simple lightweight Linuk handbook."
    Yeah, I know... sadly, I didn't notice it until it was too late to change (the book was set up for publication).  Now I have to wait for a new edition, or pay $40 to put one out now.
    Acecero wrote:Just curious, are you going to release different editions of the Arch Linux Handbook from time to time? I'm assuming the information would need to be updated and the more marketability you will gain anyway.
    I'm hoping to sell between 10 and 50 copies of this edition to pay for the upfront costs before making a new edition.  The more popular it is, the more likely I will be to keep it up to date.
    BTW, if anyone is interested in doing cover art for the second edition, get in touch with me.  I've been told that this cover looks like ass (it was gently, with links to tutorials on design :-D)
    Dusty

  • [svn:bz-4.0.0_fixes] 23961: Bug#3200562: New Flex Session Id generated while disconnect with streaming amf channel

    Revision: 23961
    Revision: 23961
    Author:   [email protected]
    Date:     2012-06-15 04:42:44 -0700 (Fri, 15 Jun 2012)
    Log Message:
    Bug#3200562: New Flex Session Id generated while disconnect with streaming amf channel
    While invalidating session, make sure a new one does not get created.
    Modified Paths:
        blazeds/branches/4.0.0_fixes/modules/core/src/flex/messaging/endpoints/BaseStreamingHTTPE ndpoint.java
    Property Changed:
        blazeds/branches/4.0.0_fixes/modules/

    You're trying to do this directly in ActionScript without using Flex, correct?
    The mxmlc compiler for Flex adds some registerClassAlias calls to map types between the client and the server. This will be missing if try to use the messaging code outside of a Flex app.
    Take a look at the mx.utils.RpcClassAliasInitializer class in rpc.swc. This has a static registerClassAliases method that will do the class registration for you. You should just need to call this before running your messaging code.
    -Alex

  • [svn:bz-4.6.x] 23962: Bug#3200562: New Flex Session Id generated while disconnect with streaming amf channel

    Revision: 23962
    Revision: 23962
    Author:   [email protected]
    Date:     2012-06-15 04:57:45 -0700 (Fri, 15 Jun 2012)
    Log Message:
    Bug#3200562: New Flex Session Id generated while disconnect with streaming amf channel
    While invalidating session, make sure a new one does not get created.
    Modified Paths:
        blazeds/branches/4.6.x/modules/core/src/flex/messaging/endpoints/BaseStreamingHTTPEndpoin t.java

    I thought the same that those devices simply are too old. However I would like to know what causes this capabilities change. We want to get rid of the old H/W, but at the moment it looks as if we would need to revert back to the 4402 in order to get those things working again.
    I have not enough information, but those devices are some kind of handhelds. Their MAC OUI belongs to Newport Electronics.
    Regards,
    Patrick

  • [svn:bz-trunk] 23960: Bug#3200562: New Flex Session Id generated while disconnect with streaming amf channel

    Revision: 23960
    Revision: 23960
    Author:   [email protected]
    Date:     2012-06-15 04:15:18 -0700 (Fri, 15 Jun 2012)
    Log Message:
    Bug#3200562: New Flex Session Id generated while disconnect with streaming amf channel
    While invalidating session, make sure a new one does not get created.
    Modified Paths:
        blazeds/trunk/modules/core/src/flex/messaging/endpoints/BaseStreamingHTTPEndpoint.java

  • [svn:bz-trunk] 23948: Bug##3200562: New Flex Session Id generated while disconnect with streaming amf channel

    Revision: 23948
    Revision: 23948
    Author:   [email protected]
    Date:     2012-06-13 06:11:35 -0700 (Wed, 13 Jun 2012)
    Log Message:
    Bug##3200562: New Flex Session Id generated while disconnect with streaming amf channel
    On session time out, Flex Client is invalidated on the server side. It also results in Flex Session getting invalidated. In order to complete the client-server streaming connection handshake, the client ends up sending a CLOSE command. On the server side, for any work to be done, the MB first needs to creates a Flex Session (if none exists). After doing the necessary cleanup, the newly created Flex Session will also be invalidated. No stray Flex Sessions will left dangling...
    Modified Paths:
        blazeds/trunk/modules/core/src/flex/messaging/endpoints/BaseStreamingHTTPEndpoint.java

  • My apple bluetooth keyboard is not paired by my Apple TV 1st generation. Is it a bug of new sw version?

    my apple bluetooth keyboard is not paired by my Apple TV 1st generation. Is it a bug of new sw version? My apple keyboard is a qwerty keyboard that is normally function with other apple devices (iphone5, iPad, etc.)

    Thanks for your description of the procedure. I selected the device by scrolling down and then pressing Enter. Then, I received the passcode on the screen, that I entered by the keyboard and the pairing was completed. the search for a new device continued, and I had to stop the search. May be you have to proceed to a complete reset of the Apple TV. Hope it works.

  • [SOLVED] Steam crash after start on fresh new arch setup

    Hello, i just installed steam on my new arch setup, using opensource ati driver with lib32 on cinnamon.
    This is the log if i run steam > log
    http://pastebin.com/MKEqfH4B
    Last edited by blackdev1l (2014-07-14 14:37:35)

    Pse wrote:
    Hmm, might the Steam runtime be messing with the video drivers? Try running Steam without it:
    STEAM_RUNTIME=0 steam
    It works. What's the steam runtime ?
    edit: It tells me that some 32libs are missing. I'll try the Rm fix.
    edit2: works after did https://bbs.archlinux.org/viewtopic.php … 5#p1432315
    Last edited by blackdev1l (2014-07-14 14:37:16)

  • Should I join the domain with my new server 2008 R2 before I run dcpromo ?

    Hi Team,
    Should I join the domain with my new server 2008 R2 before I run dcpromo ?
    Brand new server, 2008 r2. I want it to eventually be my forest root. Should I go ahead and join it to the domain as just a member server and then do all the ? Should I run adprep before I join
    the domain? I'm only asking about member server at this point...before dcpromo.
    Most of the posts I have seen relating to installing Additional Domain Controller (ADC) onto a domain, state that the machine they are starting with is NOT a member of the domain.  In my case,
    the machine I want to make an ADC is already a member of the domain.
    Regards,
    Rajesh Behara

    Hi Rajesh,
    Is your issue related to Project, the Microsoft scheduling and planning application? In case it is not, please post your question to the appropriate forum in order to have help from experts.
    Here is the
    TechNet SQL Server forum.
    Hope this helps,
    Guillaume Rouyre, MBA, MCP, MCTS |

Maybe you are looking for