SOLVED:Beryl works; But white cube with XGL :(

Well, Beryl works with nVidia drivers, but lacks the extra "smoothness" that xgl can give. So I tried using xgl with KDE via method 1 and I also tried method 2, but it gives me the dreaded "white cube". (Seems to be a popular trouble, but googling it yields no useful info)
Any idea as to what I am doing wrong?
Last edited by Misfit138 (2007-04-21 22:02:24)

DaNiMoTh wrote:
You need to use the "--use-copy" option when you launch beryl.
Or, with beryl-manager, click Options--> Rendering path --> Copy.
DaNiMoTh:
I cannot thank you enough for this small, yet priceless bit of information. Please accept my thanks, I was battling with this for hours!
EDIT: An important setting to regard is to select window manager/Beryl (right click on Beryl gem in panel). The default seems to be Kwin, which gives slightly laggy/choppy movement.
Last edited by Misfit138 (2007-04-21 23:19:15)

Similar Messages

  • Ok I have an fully upgraded iPad 2 and the volume button don't work but it do with headphones can someone help

    Ok I have an fully upgraded iPad 2 and the volume button don't work but it do with headphones can someone help. I try to go to settings and the volume won't go up there either I have the home button gesture and still the same. I try resting my iPad and nothing no sound work unless I have my headphones in. Do anybody know how to fix this

    Did you try rebooting the iPad? You will need to have some battery power for this.
    Reboot the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons.
    This may be helpful
    iPhone, iPad or iPod touch: Not responding or does not turn on
    Frozen or unresponsive iPad - Apple
    iPad: Unable to update or restore

  • [SOLVED] fbsplash working but have a created future problems?

    I'm new to arch but have managed to successfully install fbcondecor and fbsplash and manipulate them to at least a reasonable degree to get the desired effect.  However my tech-speak is poor so please bear with me. 
    The problem is that my splash screen seems to look fine, initially.  Then, however, when Vesa hands off to inteldrm the graphics get distorted. I believe it is whenever the screen resolution change occurs during the boot (which is why i believe it occurs during the handoff).  I have listed my grub configuration files as well as my daemons and Hooks below in hopes one of you guys may recognize an error.  I have read and attempted to resolve the issue but it is clear I cannot solve it without some assistance from someone with a deeper knowledge.
    This is what my screen looks like https://bbs.archlinux.org/viewtopic.php?id=136819 so I'm guessing it relates to the KMS but I configured the file in accordance with the wiki so...
    Edit:  Another possibly pertinent note is that the splash works perfectly on shutdown.
    /etc/default/grub
    GRUB_GFXPAYLOAD_LINUX=keep
    GRUB_DISABLE_RECOVERY=true
    GRUB_TIMEOUT=5
    GRUB_DISTRIBUTOR="Arch Linux"
    GRUB_DEFAULT=saved
    GRUB_GFXMODE=1024x768x32
    GRUB_CMDLINE_LINUX_DEFAULT='quiet loglevel=3 logo.nologo console=tty1 splash=silent,fadein,fadeout,theme:arch-elegant'
    GRUB_PRELOAD_MODULES="part_gpt part_msdos"
    GRUB_TERMINAL_INPUT=console
    GRUB_THEME=/boot/grub/themes/starfield/theme.txt
    GRUB_CMDLINE_LINUX=splash
    GRUB_HIDDEN_TIMEOUT=3
    Hooks   
    HOOKS="base udev uswsusp fbsplash autodetect pata scsi sata filesystems usbinput uresume fsck"
    Daemons 
    DAEMONS=(hwclock dbus !network fbcondecor sshd @netfs @crond acpid @networkmanager laptop-mode !net-profiles syslog-ng !net-auto-wireless @cupsd)
    What should I be looking for to solve this problem?  What occurs that changes the screen from the basic resolution it starts with to the enhanced resolution in the next portion of boot?  Should I post dmesg output?
    Last edited by jallenusn (2012-06-19 20:41:53)

    The question here is, why does it get loaded in the first place, usually it's loaded by the vga= statement. I'm guessing the monstrosity that is grub2 has something to do with it, remove all the GFX stuff from it's config.
    Thanks for your input.  You are correct in your assumption about my screen resolution being 1366x768.  I am having trouble understanding what you mean by "remove all the GFX stuff".  Do you mean for me to change my /etc/default/grub file and leave blank all of the categories that include "GFX" and then mkconfig?  Or are you proposing that I manually modify something in the grub.cfg to disable the graphics mode in grub2? 
    One other quick note.  It seems that before Vesa hands off to inteldrm the splash looks as intended.  It is after this hand off takes place that the splash becomes distorted (4 different occurences of the splash across the screen, all of them appearing shredded and smeared across the screen).
    Edit:  Another possibly pertinent note is that the splash works perfectly on shutdown.
    Also, for further reference I have posted both my /etc/default/grub & /boot/grub/grub.cfg below. 
    GRUB_GFXPAYLOAD_LINUX=keep
    GRUB_DISABLE_RECOVERY=true
    GRUB_TIMEOUT=5
    GRUB_DISTRIBUTOR="Arch Linux"
    GRUB_DEFAULT=saved
    GRUB_GFXMODE=1366x768x32
    GRUB_CMDLINE_LINUX_DEFAULT='quiet loglevel=3 logo.nologo console=tty1 splash=silent,fadein,fadeout,theme:arch-elegant'
    GRUB_PRELOAD_MODULES="part_gpt part_msdos"
    GRUB_TERMINAL_INPUT=console
    GRUB_THEME=/boot/grub/themes/starfield/theme.txt
    GRUB_CMDLINE_LINUX=splash
    GRUB_HIDDEN_TIMEOUT=3
    # DO NOT EDIT THIS FILE
    # It is automatically generated by grub-mkconfig using templates
    # from /etc/grub.d and settings from /etc/default/grub
    ### BEGIN /etc/grub.d/00_header ###
    insmod part_gpt
    insmod part_msdos
    if [ -s $prefix/grubenv ]; then
    load_env
    fi
    set default="${saved_entry}"
    if [ x"${feature_menuentry_id}" = xy ]; then
    menuentry_id_option="--id"
    else
    menuentry_id_option=""
    fi
    export menuentry_id_option
    if [ "${prev_saved_entry}" ]; then
    set saved_entry="${prev_saved_entry}"
    save_env saved_entry
    set prev_saved_entry=
    save_env prev_saved_entry
    set boot_once=true
    fi
    function savedefault {
    if [ -z "${boot_once}" ]; then
    saved_entry="${chosen}"
    save_env saved_entry
    fi
    function load_video {
    if [ x$feature_all_video_module = xy ]; then
    insmod all_video
    else
    insmod efi_gop
    insmod efi_uga
    insmod ieee1275_fb
    insmod vbe
    insmod vga
    insmod video_bochs
    insmod video_cirrus
    fi
    if [ x$feature_default_font_path = xy ] ; then
    font=unicode
    else
    insmod part_msdos
    insmod btrfs
    set root='hd0,msdos3'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3 719a75c8-81fa-4f8d-b06a-b2ab3ba18770
    else
    search --no-floppy --fs-uuid --set=root 719a75c8-81fa-4f8d-b06a-b2ab3ba18770
    fi
    font="/usr/share/grub/unicode.pf2"
    fi
    if loadfont $font ; then
    set gfxmode=1366x768x32
    load_video
    insmod gfxterm
    set locale_dir=$prefix/locale
    set lang=en_US
    insmod gettext
    fi
    terminal_input console
    terminal_output gfxterm
    insmod part_msdos
    insmod ext2
    set root='hd0,msdos1'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 54d38b5e-db10-4162-bfcd-1226ada0d561
    else
    search --no-floppy --fs-uuid --set=root 54d38b5e-db10-4162-bfcd-1226ada0d561
    fi
    insmod gfxmenu
    loadfont ($root)/grub/themes/starfield/dejavu.pf2
    insmod png
    set theme=($root)/grub/themes/starfield/theme.txt
    export theme
    if sleep --verbose --interruptible 3 ; then
    set timeout=5
    fi
    ### END /etc/grub.d/00_header ###
    ### BEGIN /etc/grub.d/10_linux ###
    menuentry 'Arch Linux GNU/Linux, with Linux fbcondecor kernel' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-fbcondecor kernel-true-719a75c8-81fa-4f8d-b06a-b2ab3ba18770' {
    load_video
    set gfxpayload=keep
    insmod gzio
    insmod part_msdos
    insmod ext2
    set root='hd0,msdos1'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 54d38b5e-db10-4162-bfcd-1226ada0d561
    else
    search --no-floppy --fs-uuid --set=root 54d38b5e-db10-4162-bfcd-1226ada0d561
    fi
    echo 'Loading Linux fbcondecor kernel ...'
    linux /vmlinuz-linux-fbcondecor root=UUID=719a75c8-81fa-4f8d-b06a-b2ab3ba18770 ro splash quiet loglevel=3 logo.nologo console=tty1 splash=silent,fadein,fadeout,theme:arch-elegant
    echo 'Loading initial ramdisk ...'
    initrd /initramfs-linux-fbcondecor.img
    menuentry 'Arch Linux GNU/Linux, with Linux fbcondecor kernel (Fallback initramfs)' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-fbcondecor kernel-fallback-719a75c8-81fa-4f8d-b06a-b2ab3ba18770' {
    load_video
    set gfxpayload=keep
    insmod gzio
    insmod part_msdos
    insmod ext2
    set root='hd0,msdos1'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 54d38b5e-db10-4162-bfcd-1226ada0d561
    else
    search --no-floppy --fs-uuid --set=root 54d38b5e-db10-4162-bfcd-1226ada0d561
    fi
    echo 'Loading Linux fbcondecor kernel ...'
    linux /vmlinuz-linux-fbcondecor root=UUID=719a75c8-81fa-4f8d-b06a-b2ab3ba18770 ro splash quiet loglevel=3 logo.nologo console=tty1 splash=silent,fadein,fadeout,theme:arch-elegant
    echo 'Loading initial ramdisk ...'
    initrd /initramfs-linux-fbcondecor-fallback.img
    menuentry 'Arch Linux GNU/Linux, with Linux core repo kernel' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-core repo kernel-true-719a75c8-81fa-4f8d-b06a-b2ab3ba18770' {
    load_video
    set gfxpayload=keep
    insmod gzio
    insmod part_msdos
    insmod ext2
    set root='hd0,msdos1'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 54d38b5e-db10-4162-bfcd-1226ada0d561
    else
    search --no-floppy --fs-uuid --set=root 54d38b5e-db10-4162-bfcd-1226ada0d561
    fi
    echo 'Loading Linux core repo kernel ...'
    linux /vmlinuz-linux root=UUID=719a75c8-81fa-4f8d-b06a-b2ab3ba18770 ro splash quiet loglevel=3 logo.nologo console=tty1 splash=silent,fadein,fadeout,theme:arch-elegant
    echo 'Loading initial ramdisk ...'
    initrd /initramfs-linux.img
    menuentry 'Arch Linux GNU/Linux, with Linux core repo kernel (Fallback initramfs)' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-core repo kernel-fallback-719a75c8-81fa-4f8d-b06a-b2ab3ba18770' {
    load_video
    set gfxpayload=keep
    insmod gzio
    insmod part_msdos
    insmod ext2
    set root='hd0,msdos1'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 54d38b5e-db10-4162-bfcd-1226ada0d561
    else
    search --no-floppy --fs-uuid --set=root 54d38b5e-db10-4162-bfcd-1226ada0d561
    fi
    echo 'Loading Linux core repo kernel ...'
    linux /vmlinuz-linux root=UUID=719a75c8-81fa-4f8d-b06a-b2ab3ba18770 ro splash quiet loglevel=3 logo.nologo console=tty1 splash=silent,fadein,fadeout,theme:arch-elegant
    echo 'Loading initial ramdisk ...'
    initrd /initramfs-linux-fallback.img
    if [ "x$default" = 'Arch Linux GNU/Linux, with Linux core repo kernel' ]; then default='Advanced options for Arch Linux GNU/Linux>Arch Linux GNU/Linux, with Linux core repo kernel'; fi;
    ### END /etc/grub.d/10_linux ###
    ### BEGIN /etc/grub.d/20_linux_xen ###
    ### END /etc/grub.d/20_linux_xen ###
    ### BEGIN /etc/grub.d/20_memtest86+ ###
    ### END /etc/grub.d/20_memtest86+ ###
    ### BEGIN /etc/grub.d/30_os-prober ###
    ### END /etc/grub.d/30_os-prober ###
    ### BEGIN /etc/grub.d/40_custom ###
    # This file provides an easy way to add custom menu entries. Simply type the
    # menu entries you want to add after this comment. Be careful not to change
    # the 'exec tail' line above.
    ### END /etc/grub.d/40_custom ###
    ### BEGIN /etc/grub.d/41_custom ###
    if [ -f $prefix/custom.cfg ]; then
    source $prefix/custom.cfg;
    fi
    ### END /etc/grub.d/41_custom ###
    Last edited by jallenusn (2012-06-17 17:57:32)

  • Directly printing works - but viewer fails with an error

    Hey,
    we are using: Crystal Reports 2011 and runtime for VS2010.
    I open and print my reports via c#. The directly printing works fine. But the viewer don't works. It's really crazy, because directly printing and viewing are using the same methods for database login etc.
    At preview a form with the crystalreportsviewer will be opened and the reportsource is being set. After that the viewer shows the progress box. After a short while the progress box disappears and the following error is shown:
    Crystal Report Windows Forms Viewer
    Die Abfragen zum Abrufen der für diesen Bericht erforderlichen Daten können nicht ermittelt werden.
    Daten konnten nicht aus Datenbank abgerufen werden.
    Fehler in der Datei CS_201001_u {5BF5FF1B-C662-4A1E-80CA-B4BEB0124295}.rpt:
    Daten konnten nicht aus Datenbank abgerufen werden.
    OK  
    Translated in english:
    Crystal Report Windows Forms Viewer
    The queries to retrieve the required data for this report can not be determined.
    Fehler in der Datei CS_201001_u {5BF5FF1B-C662-4A1E-80CA-B4BEB0124295}.rpt:
    Data could not be retrieved from database.
    OK  
    But the database logon methods etc. are all the same as at directly printing. What could it be?
                this.crystalReportViewer.ShowPrintButton = false;
                this.crystalReportViewer.ReportSource = pMainCRWReport;
                this.crystalReportViewer.ShowProgressAnimation(this._DruckOptionen.ShowDruckstatus);
                if (pPreviewOptions.Zoomlevel == 1 || pPreviewOptions.Zoomlevel == 2 ||
                    (pPreviewOptions.Zoomlevel >= 25 && pPreviewOptions.Zoomlevel <= 400))
                    this.crystalReportViewer.Zoom(pPreviewOptions.Zoomlevel);
                                pMainCRWReport.PrintToPrinter(pReport.Druckoptionen.AnzahlKopien,
                                                              pReport.Druckoptionen.KopieSeitenSortiert,
                                                              pReport.Druckoptionen.StartPage,
                                                              pReport.Druckoptionen.EndPage);
    pMainCRWReport is ReportDocument.

    Yes, it looks like that. I don't use postbacks or sessions.
    I have inserted the following code just before the ReportSource of the viewer will be set.
    ReportDocument doc = (ReportDocument)pMainCRWReport;
    foreach (Table table in doc.Database.Tables)
           MessageBox.Show(string.Format("{0}: {1}", table.Name, table.TestConnectivity().ToString()));
    All TestConnectivity returning true!
    CrystalDecisions.CrystalReports.Engine.InternalException: Daten konnten nicht aus Datenbank abgerufen werden.
    Details:  Datenbankanbietercode: -243
    Daten konnten nicht aus Datenbank abgerufen werden.
    Fehler in der Datei CS_201001_u {870C483C-D947-4FEA-A1C6-1AD0DC4A2805}.rpt:
    Daten konnten nicht aus Datenbank abgerufen werden.
    Details:  Datenbankanbietercode: -243 ---> System.Runtime.InteropServices.COMException (0x800002D3): Daten konnten nicht aus Datenbank abgerufen werden.
    Details:  Datenbankanbietercode: -243
    Daten konnten nicht aus Datenbank abgerufen werden.
    Fehler in der Datei CS_201001_u {870C483C-D947-4FEA-A1C6-1AD0DC4A2805}.rpt:
    Daten konnten nicht aus Datenbank abgerufen werden.
    Details:  Datenbankanbietercode: -243
       bei CrystalDecisions.ReportAppServer.Controllers.ReportSourceClass.GetPage(PageRequestContext pPageRequestContext)
       bei CrystalDecisions.ReportSource.EromReportSourceBase.GetPage(PageRequestContext pageReqContext)
       --- Ende der internen Ausnahmestapelüberwachung ---
       bei CrystalDecisions.Windows.Forms.ReportDocumentBase.GetPage(Int32 pageN)
       bei CrystalDecisions.Windows.Forms.DocumentControl.ShowNthPage(Int32 PageNumber)
       bei CrystalDecisions.Windows.Forms.DocumentControl.ShowFirstPage()
       bei CrystalDecisions.Windows.Forms.PageView.ShowFirstPageEx()/
    OK  
    The error -243 is an informix error:
    Could not position within a table table-name.
    The database server cannot set the file position to a particular row within the file that represents a table. Check the accompanying ISAM error code for more information. A hardware error might have occurred, or the table or index might have been corrupted (truncated). Unless the ISAM error code or an operating-system message points to another cause, run the oncheck utility (secheck with IBM Informix SE or tbcheck with IBM Informix OnLine) to check and repair table and index.
    It seems to be that the viewer can't read the records with are locked within a transaction. I don't understand why the direct printing works. Is it possible to set the ISOLATION LEVEL for the report database connections?
    I have tried this note but it don't works.

  • [solved]Xfce works, but no others!

    Hello gentlemen.
    After some months of playing around with Arch and my wireless connection with it, I finally managed to get to a point where I have more than a terminal.
    I set up xorg seemingly perfectly with nvidia-xconfig, and am able to run Xfce without any problems (other than lack of sound, going to have to figure out how to set that up..). But when I try to start Openbox, it shows a mess of lines for about a second and then automatically logs out, and I think I read something about a display error there.  GNOME doesn't work either; also says something about a display error. I think both of them also talked about a locale error.
    Is there anything extra that I have to download that I might've forgotten about? Or is the locale thing a really big deal? I can't see any mistakes in the way I set it up, but this shows up with the 'locale' command:
    [sko@OGC ~]$ locale
    locale: Cannot set LC_CTYPE to default locale: No such file or directory
    locale: Cannot set LC_MESSAGES to default locale: No such file or directory
    locale: Cannot set LC_ALL to default locale: No such file or directory
    LANG=en_EN.utf8
    LC_CTYPE="en_US.iso8859"
    LC_NUMERIC="en_US.iso8859"
    LC_TIME="en_US.iso8859"
    LC_COLLATE="en_US.iso8859"
    LC_MONETARY="en_US.iso8859"
    LC_MESSAGES="en_US.iso8859"
    LC_PAPER="en_US.iso8859"
    LC_NAME="en_US.iso8859"
    LC_ADDRESS="en_US.iso8859"
    LC_TELEPHONE="en_US.iso8859"
    LC_MEASUREMENT="en_US.iso8859"
    LC_IDENTIFICATION="en_US.iso8859"
    LC_ALL=en_US.iso8859
    Any help would be awesomely appreciated!
    P.S. I run Arch64 with a ViewSonic VA1912wb monitor and a GeForce 8600GTS graphics card.
    Last edited by Skofo (2008-09-14 01:02:03)

    Statix wrote:
    Skofo wrote:
    Statix wrote:How are you starting your DEs? Through .xinitrc, or through a desktop manager?
    Xfce, Openbox and GNOME through startxfce4, openbox-session and gnome-session, respectively, from the shell.
    This must be the problem then. Startxfce4 starts X11 for you, while the other two require X11 to already be running.
    What you need to do is edit .xinitrc in your home directory and put:
    exec openbox-session
    or
    exec gnome-session
    Depending on which one you want to start.
    Then, just type startx. It should work then.
    That worked great, thanks! Have my babies.
    Guess I should read instructions more carefully..
    Last edited by Skofo (2008-09-13 19:31:34)

  • FireFox works, but nothing else with TC

    Hello!
    I recently have begun experiencing problems with my 2 week old TC. I just moved and I am receiving my net from a rental apartment in a college town. The plug into the net is simply an ethernet jack. I don't know who provides the service.
    My TC only works with FireFox and not safari, itunes, or checking for updates. Yet, another mac that's in the same room as me has no problems working with safari, itunes, firefox, or software updates.
    This is troubling as everything worked on both computers perfectly at the old place, which also was just an ethernet jack into the wall. The mac TC is not working with is my iMac, and it's working fine with a PowerBook G4. I'd like to also say that network diagnostics does not find any problems and says everything should be working. I am hoping for some insight into this!
    Thanks

    I'd like to simply mention that I solved the problem already and to provide the reason TC wasn't working (or perhaps any wifi!).
    I had recently tried to get my iPhone 3G's application NetShare to work on my iMac and I had manually put in a port and IP address that the computer would use or maybe only use. Anyway, in getting rid of that, it easily found Safari and everything is smooth.

  • HT1476 Hi I have an iphone 4 and have a number of car chargers which until recently all chared the phone ok, none now work but are ok with other makes of phone (using different USB leads).

    All car chargers have recently stopped working, chargers are ok and various leads tried so can oly assume its something to do with the phone, any ideas please?

    There is no iDevice limit for the number of iPods, iPads, and iPhones that can be synced with the same iTunes library and iTunes account on the same computer. iTunes creates and maintains a backup for each device, and each device can have its own sync preferences with iTunes - the same as another device synced with iTunes on the same computer, or completely or somewhat different, etc.
    Every new iPhone model released since the original iPhone was released has been better in some or a number of aspects. It will probably be the same with the next iPhone model released - a safe bet to count on it to some extent at least, but what that is will be is anyone's guess at this point until Apple makes an announcement.

  • [SOLVED] Alsa works, but not pulse (pulseaudio: symbol lookup error)

    SOLUTION: Fixed in latest pulseaudio. Build from latest git, or use AUR.
    I've just installed Arch following the beginner's guide, managing to get an up to date system, Xorg working with Awesome, and positive results with systemd. My next goal was basic audio and video.
    I installed Alsa, added myself to the audio group, tested the playback and recording with arecord and aplay, no problems.
    I installed mplayer2, which pulled `libpulse=0.9.22-2` as a dependency.
    Mplayer2 did not work. It looked like it had something to do with pulseaudio, but I didn't look too hard before removing mplayer2 and libpulse.
    Installed pulseaudio, pavucontrol, paprefs, avahi. I want to use mplayer2, but mostly I want pulseaudio for its own merits, especially its network transparency. I'm also hoping it fixes a skype problem.
    Tried running `pulseaudio --start`, but it fails returning this error:
    [jake@clyde pkg]$ pulseaudio --start
    pulseaudio: symbol lookup error: /usr/lib/libpulsecommon-0.9.22.so: undefined symbol: STRING
    Here's also a snippet of strace, I can post the full log if it would help.
    [jake@clyde ~]$ strace -f pulseaudio --start
    read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\220\r\0\0004\0\0\0"..., 512) = 512
    fstat64(3, {st_mode=S_IFREG|0755, st_size=16064, ...}) = 0
    mmap2(NULL, 18804, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb6e91000
    mmap2(0xb6e95000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x3) = 0xb6e95000
    close(3) = 0
    mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb6e90000
    mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb6e8f000
    mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb6e8e000
    set_thread_area({entry_number:-1 -> 6, base_addr:0xb6e8e700, limit:1048575, seg_32bit:1, contents:0, read_exec_only:0, limit_in_pages:1, seg_not_present:0, useable:1}) = 0
    mprotect(0xb7038000, 311296, PROT_READ|PROT_WRITE) = 0
    mprotect(0xb7038000, 311296, PROT_READ|PROT_EXEC) = 0
    mprotect(0xb7099000, 4096, PROT_READ) = 0
    mprotect(0xb70b2000, 4096, PROT_READ) = 0
    mprotect(0xb7242000, 8192, PROT_READ) = 0
    mprotect(0xb7270000, 4096, PROT_READ) = 0
    mprotect(0xb7275000, 4096, PROT_READ) = 0
    mprotect(0xb727f000, 4096, PROT_READ) = 0
    mprotect(0xb729d000, 4096, PROT_READ) = 0
    mprotect(0xb72e8000, 4096, PROT_READ) = 0
    writev(2, [{"pulseaudio", 10}, {": ", 2}, {"symbol lookup error", 19}, {": ", 2}, {"/usr/lib/libpulsecommon-0.9.22.s"..., 33}, {": ", 2}, {"undefined symbol: STRING", 24}, {"", 0}, {"", 0}, {"\n", 1}], 10pulseaudio: symbol lookup error: /usr/lib/libpulsecommon-0.9.22.so: undefined symbol: STRING
    ) = 93
    exit_group(127) = ?
    Hope someone can point me in the right direction. I'm liking Arch so far. It feels like Slackware, but without the dependency hell!
    Last edited by djeikyb (2011-06-23 20:51:22)

    rickeyski wrote:
    I know there is an issue with pulse and xcb-util 3.8,  taken from the awesome-git aur page
    http://sources.gentoo.org/cgi-bin/viewv … threv=HEAD
    Gentoo's Bugzilla
    http://bugs.gentoo.org/show_bug.cgi?id=364965
    Thank you for this find! Your links have been mentioned in the awesome-git AUR page:
    http://aur.archlinux.org/packages.php?ID=13916

  • Upgraded to 4.0 now my Tiscali email does not work but it does with Internet Explorer?

    I uploaded the new Firefox version 4 and when I access my Tiscali email account and open the mailbox it states 'you have undefined email' and will not let me into the 'inbox'.
    I can access my extra mail account which is TalkTalk.
    If I open Internet Explorer I can access and use my Tiscali email account no problem.
    I prefer to use Firefox as I have used for years but if I cannot fix this I will have to Internet Explorer.

    If it works, then OK, I was right the first time. I thought about it last night and came to the conclusion it couldn't be correct which is why I amended it this morning. Oh well...

  • Have valid serial number,trial works but activation stops with "can't find CS5 on this computer"

    Purchased and installed Contribute CS5 after changing computer/Windows 7. Have valid serial number which is accepted onthe activation screen, however it says it cannot find CS5 on my computer and lists CS3 and CS4. The Trial version works and I have been going this route however now I am out of trial usages...help please! Going through another marathon phone session with Adobe to sort out another installation/serial number issue is not in my workday plans. BTW, this is only installed on this one computer.

    Perfect! Thank you! I did purchase/install as an upgrade. Did not notice the black space to the right was to input the previous version serial number...fixed!

  • White screen with confetti on start-up and intermittent black screen . Video card failing?

    Is the video card starting to go ? It is an early 2008 Imac . Keeps powering up but white screen with confetti for a few seconds on start-up . Display did also go black for about 5 minutes last week but also came back . I'm thinking video card degradation?

    The most common cause is the MLB or GPU.
    You can run the AHT (Apple Hardware Test) (http://support.apple.com/kb/ht1509 OR http://support.apple.com/kb/PH11342) and see if that pulls up any results, otherwise, book an appointment online at your local Apple Retail Store free of charge, for a free assessment and diagnosis. (http://www.apple.com/retail/)
    Regards,
    MiiCK

  • IPhone will sync @ work, but not @ home: same PC

    My iphone (3GS) will readily sync with my work laptop at work, but only sync with my work laptop when I am home IF I am connected into my work's VPN. If I am not connected into the VPN at home, the iphone won't sync at home. Why?? How can I get it to sync at home (where all my music is stored on a home server) without connecting into the VPN? Fortunately, when I am connected into the VPN from home, my PC can access my home server, but it is still a pain to take the extra step to log into the VPN.
    Thanks.
    JCinSC

    I am also experincing Exchange connectivity issues after upgrading to ios 5.1.1.
    Exchange access was working fine in ios 5.1.
    Now, it will verify connection, but not transfer anthing to the iphone.
    I have deleted the account, rebooted the iphone, and readded it many times to no avail.

  • I opened my iPod Touch up to fix my home button. When i closed it back up it had a white screen. I tried pressing lock and home button for 10 seconds and it worked but while i'm using it it goes white with lines on the screen. Help please

    I opened my iPod Touch up to fix my home button. When i closed it back up it had a white screen. I tried pressing lock and home button for 10 seconds and it worked but while i'm using it it goes white with lines on the screen. Help please. This has been happening for a while and i've tried everything but it doesn't work.

    Try:
    fix for Home button
    iPhone Home Button Not Working or Unresponsive? Try This Fix
    - If you have iOS 5 and later you can turn on Assistive Touch it add the Home and other buttons to the iPods screen. Settings>General>Accessibility>Assistive Touch
    - If not under warranty Apple will exchange your iPod for a refurbished one for:
    Apple - Support - iPod - Repair pricing
    You can do it an an Apple store by:
    Apple Retail Store - Genius Bar
    or sent it in to Apple. See:
    Apple - Support - iPod - Service FAQ
    - There are third-party places like the following that will repair the Home button. Google for more.
    iPhone Repair, Service & Parts: iPod Touch, iPad, MacBook Pro Screens

  • I am having problems connecting to home wifi.  It was working, but now all I get is a blank white screen.  I re-booted with no success.

    I am having problems connecting to home wifi.  It was working, but now all I get is a blank white screen.  I re-booted with no success.

    Hi, blank white screen where exactly?
    Make a New Location, Using network locations in Mac OS X ...
    http://support.apple.com/kb/HT2712
    10.5, 10.6, 10.7 & 10.8…
    System Preferences>Network, top of window>Locations>Edit Locations, little plus icon, give it a name.
    10.5.x/10.6.x/10.7.x/10.8.x instructions...
    System Preferences>Network, click on the little gear at the bottom next to the + & - icons, (unlock lock first if locked), choose Set Service Order.
    The interface that connects to the Internet should be dragged to the top of the list.
    If using Wifi/Airport...
    Instead of joining your Network from the list, click the WiFi icon at the top, and click join other network. Fill in everything as needed.
    For 10.5/10.6/10.7/10.8, System Preferences>Network, unlock the lock if need be, highlight the Interface you use to connect to Internet, click on the advanced button, click on the DNS tab, click on the little plus icon, then add these numbers...
    208.67.222.222
    208.67.220.220
    (There may be better or faster DNS numbers in your area, but these should be a good test).
    Click OK.

  • My updated version of iMovie doesn't work. It opens, shows iMovie window but completely white, just with the grey bar on top which doesn't respond to actions.

    Greetings,
    Thanks to all in advance for your time and help.
    My iMovies doesn't seem to work; when I open it, it appears the normal iMovie window but white, all white, nothing can be seen except for the gray bar on top with the signs Import/Create ecc. All the options available on the gray bar on top of the window don't work, the input doesn't go through. All the options on the top TOP barr (where the battery, time, day, airport is shown) are all grayed out. I can't do anything.
    How can it get worst? It can: now after opening iMovie and trying to do something, without succeeding, I cant even quit the program, not even with force quit. I have to keep the general ON/OFF computer button pressed until everything shuts down. (and this is bad for the computer too). When I turn the computer on again it says: "you turned off the computer because of a problem", I ignore and access my data normally.
    Thank you again for your time.
    Hope to hear from someone soon.
    Regards
    Matt

    Try backing up to iTunes and restoring from backup
    iOS: Back up and restore your iOS device with iCloud or iTunes      
    Note the the iPod backup that iTunes makes does not include any synced media like apps or music.

Maybe you are looking for