[Solved] Uninstalling vlc - dependency issues

pacman 4.2.0:
[root@arch ~]# pacman -Rs vlc
checking dependencies...
error: failed to prepare transaction (could not satisfy dependencies)
:: phonon-qt4-vlc: requires vlc
[root@arch ~]# pacman -Rs vlc phonon-qt4-vlc
checking dependencies...
error: failed to prepare transaction (could not satisfy dependencies)
:: phonon-qt4: requires phonon-qt4-backend
[root@arch ~]# pacman -Rs vlc phonon-qt4-vlc phonon-qt4
checking dependencies...
error: failed to prepare transaction (could not satisfy dependencies)
:: kdelibs: requires phonon-qt4
[root@arch ~]# pacman -Rs phonon-qt4-vlc
checking dependencies...
error: failed to prepare transaction (could not satisfy dependencies)
:: phonon-qt4: requires phonon-qt4-backend
[root@arch ~]# pacman -R phonon-qt4-vlc
checking dependencies...
error: failed to prepare transaction (could not satisfy dependencies)
:: phonon-qt4: requires phonon-qt4-backend
And I can't even
[root@arch ~]# pacman -R vlc
checking dependencies...
error: failed to prepare transaction (could not satisfy dependencies)
:: phonon-qt4-vlc: requires vlc
Last edited by nesk (2015-01-06 11:48:12)

Lone_Wolf wrote:
nesk, phonon is a dependency of kdelibs, which is a depedency for many kde applications .
pactree -r kdelibs will give you an idea how many things on your system require kdelibs and thus phonon .
if you do have kdebase-workspace instaled, you can run KDE System Settings manually from terminal using systemsettings
OK, thanks, that did the trick:
[root@arch ~]# pactree -r kdelibs
kdelibs
├─libksane
└─libreoffice-still-kde4
[root@arch ~]# pacman -R libreoffice-still-kde4 libksane
checking dependencies...
Packages (2) libksane-4.14.3-1 libreoffice-still-kde4-4.2.8-2
Total Removed Size: 0.54 MiB
:: Do you want to remove these packages? [Y/n] y
(1/2) removing libksane [####################################################################################] 100%
(2/2) removing libreoffice-still-kde4 [####################################################################################] 100%
[root@arch ~]# pacman -R kdelibs
checking dependencies...
:: vlc optionally requires kdelibs: KDE Solid hardware integration
Packages (1) kdelibs-4.14.3-2
Total Removed Size: 50.35 MiB
:: Do you want to remove these packages? [Y/n] y
(1/1) removing kdelibs
[root@arch ~]# pacman -R vlc phonon-qt4-vlc
checking dependencies...
Packages (2) phonon-qt4-vlc-0.8.2-1 vlc-2.1.5-5
Total Removed Size: 43.71 MiB
:: Do you want to remove these packages? [Y/n] y
(1/2) removing phonon-qt4-vlc [####################################################################################] 100%
(2/2) removing vlc

Similar Messages

  • How to solve a PKGBUILD dependency issue for the MinGW-w64 toolchain?

    Hi,
    I had the ambitious plan of creating PKGBUILDs to provide a fully functional and full-featured MinGW-w64 toolchain in Arch (starting with the AUR). For those of you not aware of MinGW-w64; it's a project that provides the more complete alternative for MinGW.org: they support a much larger set of the Win32 API and provide 64-bit support. In short: they allow you to use GCC for Windows 32 and 64-bit.
    The current list of packages is here: https://aur.archlinux.org/packages.php?SeB=m&K=rubenvb
    They work (roughly, for me, I'm working out the problems as people report them), but only if you build and install them manually.
    I would like to ask the help of the experts that reside here to resolve the issue that handy tools like yaourt and other AUR utilities cannot build/install these packages automagically, so that people are more easily persuaded to use my packages. The dependencies here are what functionally needs to be set, not per se what the current PKGBUILDs specify, due to numerous experiments and trial and error...)
    The build and install order needs to be strictly followed:
    1. build+install mingw-w64-headers-base (no makedepends)
    2. build+install mingw-w64-binutils (no makedepends)
    3. build+install mingw-w64-gcc-base (makedepends and depends: mingw-w64-binutils)
    4. build+install mingw-w64-crt (makedepends and depends: mingw-w64-gcc-base and mingw-w64-binutils)
    5. build mingw-w64-winpthreads (makedepends: mingw-w64-headers-base, mingw-w64-gcc-base and mingw-w64-binutils, conflicts mingw-w64-headers-base)
    6. build mingw-w64-headers (no makedepends, conflicts mingw-w64-headers-base)
    7. install mingw-w64-headers (replaces mingw-w64-headers-base)
    8. install mingw-w64-winpthreads
    9. build+install mingw-w64-gcc (replaces mingw-w64-gcc-base)
    I tried to enforce this as much as possible in the PLGBUILDs, but am unsure if everything is as it should be...
    The resulting binary packages that non-AUR-users
    (once mingw-w64 is in a binary repo) should install:
    - mingw-w64-headers
    - mingw-w64-crt
    - mingw-w64-winpthreads
    - mingw-w64-binutils
    - mingw-w64-gcc
    The issue is that winpthreads overwrites two dummy headers that have to be included in mingw-w64-headers-base, so I provide a mingw-w64-headers package omitting these two files, but unusable without mingw-w64-winpthreads. So winpthreads needs to be built when mingw-w64-headers-base is installed, and mingw-w64-headers cannot be installed before winpthreads is installed, due to these two headers (per architecture) being supplied by winpthreads in a complete form.
    I will try to tune the dependencies tonight, but any help or insight into the automation process is highly appreciated!
    Thanks,
    Ruben
    Last edited by rubenvb (2011-11-22 21:28:12)

    Interesting problem.
    While i don't use any aur helper, i think you can simplify your approach a bit.
    Here's how i would do it (changes in red) :
    1. build+install mingw-w64-headers-base (no makedepends)
    this package DOES NOT include the dummy headers
    1a. build + install mingw-w64-headers-extra-dummy (makedepends : mingw-w64-headers-base)
    this package will include ONLY the dummy headers
    2. build+install mingw-w64-binutils (no makedepends)
    3. build+install mingw-w64-gcc-base (makedepends and depends: mingw-w64-binutils)
    4. build+install mingw-w64-crt (makedepends and depends: mingw-w64-gcc-base and mingw-w64-binutils)
    5. build mingw-w64-winpthreads
    makedepends:
    mingw-w64-headers-base, mingw-w64-gcc-base and mingw-w64-binutils, mingw-w64-headers-extra-dummy
    conflicts with mingw-w64-headers-extra-dummy
    provides mingw-w64-headers-extra
    6. skipped
    7. skipped
    8. install mingw-w64-winpthreads
    9. build+install mingw-w64-gcc (replaces mingw-w64-gcc-base)
    makedepends : mingw-w64-headers-base, mingw-w64-headers-extra

  • [Solved] Ipython Notebook Setup - zmq Dependency Issue

    I'm posting both the problem and the solution here in case this helps anyone else who is working with IPython
    I just ran into  an issue trying to run the ipython notebook on a fresh install of Arch Linux. After installation Ipython works correctly from a shell/terminal prompt, but fails to start when you try to run it in notebook mode (via the' $ ipython notebook --pylab' command ).
    This fails with an error that the incorrect version of pyzmq is installed - it's looking for version 2.1.4 (which apparently is not installed with the IPython install. FWIW I reinstalled ipython just to verify that I was not imagining things<g>)!.  You can see some more info on this link:
    http://ipython.org/ipython-doc/dev/inst … python-zmq
    To reinstall/upgrade to the correct version use the following command:
    $ sudo pip2 install ipython[zmq]
    Notes:  1) This is the appropriate syntax to install subcomponents within a package (did not know this before as I normally install the entire pkg))
                2) I use pip2 here as I have both py2.7 and 3.3 installed and I'm trying to develop with py 3.3.
                3) AFAIK pip install is recommended over pacman for python components.
    Hope this helps someone as it's frustrating trying to solve these install dependency issues - especially if the focus is on finishing some other task. Perhaps someone could confirm where this needs to be fixed as the problem is probably due to an upstream dependency.

    ziv667 wrote:HOOKS="base udev autodetect modconf encrypt lvm2 block filesystems keyboard fsck"
    Where's the keymap hook?
    HOOKS="base udev autodetect modconf keymap encrypt lvm2 block filesystems keyboard fsck"

  • Libgnome and bonono dependency issues

    There is some kind of "unresolved dependency" issues in some packages. For example see https://bugs.archlinux.org/task/22547
    This thread should help to fine the evils root. Until now it's seems to be a problem of libgnome, but may be we are wrong yet.
    First of all, here is the output of 'pacman -Qe' from a system were terminator is running fine under gnome:
    acl 2.2.49-2
    acpi 1.5-1
    alsa-utils 1.0.23-3
    android-ndk r5-1
    android-sdk r09-5
    apache-ant 1.8.2-1
    argouml 0.30.2-1
    arj 3.10.22-5
    attr 2.4.44-2
    audacity 1.3.12-3
    autoconf 2.68-1
    automake 1.11.1-2
    avant-window-navigator 0.4.0-10
    bash 4.1.009-3
    bash-completion 1.3-1
    bin86 0.16.17-5
    binutils 2.21-3
    bison 2.4.3-1
    brasero 2.32.1-1
    bzip2 1.0.6-1
    bzr 2.2.2-2
    ccrypt 1.9-1
    ccsm 0.8.4-2
    cdrkit 1.1.11-1
    cnetworkmanager 0.21.1-3
    compiz-decorator-gtk 0.8.6-2
    compiz-fusion-plugins-extra 0.8.6-1
    compiz-fusion-plugins-main 0.8.6-1
    conky 1.8.1-2
    coreutils 8.10-1
    cpio 2.11-2
    cppcheck 1.46.1-1
    cracklib 2.8.18-1
    cryptsetup 1.2.0-1
    cups 1.4.6-1
    cups-pdf 2.5.0-1
    cxxtest 3.10.1-4
    dash 0.5.6.1-2
    db 5.1.19-3
    dbus 1.4.1-1
    dbus-core 1.4.1-1
    dcron 4.4-2
    device-mapper 2.02.82-2
    dhcpcd 5.2.10-1
    dialog 1.1_20110118-1
    diffutils 3.0-2
    dosbox 0.74-1
    dosfstools 3.0.10-1
    driconf 0.9.1-5
    e2fsprogs 1.41.14-1
    easytag 2.1.6-3
    eog 2.32.1-1
    evince 2.32.0-7
    faenza-icon-theme 0.8-1
    fakeroot 1.14.5-1
    fbxkb 0.6-1
    figlet 2.2.3-1
    file 5.05-1
    filesystem 2010.12-1
    findutils 4.4.2-3
    flashplugin 10.2.152.27-1
    flex 2.5.35-4
    fuseiso 20070708-2
    galculator 1.3.4-2
    gamin 0.1.10-4
    gartoon-redux-icon-theme 1.10-1
    gawk 3.1.8-2
    gcc 4.5.2-6
    gcc-libs 4.5.2-6
    gdb 7.2-2
    gdbm 1.8.3-8
    gdmap 0.8.1-2
    gen-init-cpio 2.6.36-1
    gettext 0.18.1.1-1
    gimp 2.6.11-2
    git 1.7.4-1
    glibc 2.13-1
    glproto 1.4.12-1
    glsof 0.9.16-5
    gnome-backgrounds 2.32.0-1
    gnome-control-center 2.32.1-1
    gnome-desktop 2.32.1-1
    gnome-icon-theme 2.31.0-1
    gnome-keyring 2.32.1-1
    gnome-menus 2.30.5-1
    gnome-mime-data 2.18.0-4
    gnome-panel 2.32.1-2
    gnome-power-manager 2.32.0-1
    gnome-session 2.32.1-1
    gnome-settings-daemon 2.32.1-2
    gnome2-user-docs 2.32.0-1
    graphviz 2.26.3-2
    grep 2.7-1
    groff 1.21-1
    grsync 1.1.1-1
    grub2 1.98-5
    gstreamer0.10-base-plugins 0.10.32-2
    gstreamer0.10-ffmpeg 0.10.11-1
    gstreamer0.10-good 0.10.27-1
    gtk-engines 2.20.2-1
    gtk-theme-murrine-unity 0.7-1
    gvfs-smb 1.6.6-1
    gzip 1.4-2
    hd2u 1.0.3-1
    hdparm 9.36-1
    htop 0.9-1
    hunspell-de 20100727-1
    hunspell-en 7.0-1
    hunspell-ru 0.99g5-3
    inetutils 1.8-2
    initscripts 2010.07-2
    iperf 2.0.5-1
    iputils 20101006-1
    jfsutils 1.1.14-2
    jperf 2.0.2-2
    kbd 1.15.2-1
    kernel26 2.6.35.7-1
    kernel26-docs 2.6.35.7-1
    kernel26-headers 2.6.35.7-1
    kernel26-manpages 2.6.35.7-1
    ktsuss 1.4-2
    laptop-mode-tools 1.55-2
    less 436-2
    libarchive 2.8.4-2
    libdvdcss 1.2.10-2
    libfetch 2.33-1
    libgcrypt 1.4.6-1
    libgpg-error 1.9-2
    libpcap 1.1.1-2
    libreoffice-de 3.3.0.4-1
    libreoffice-ru 3.3.0.4-1
    libsigsegv 2.6-1
    libtool 2.4-2
    libusb 1.0.8-1
    libzip 0.9.3-1
    licenses 2.6-1
    linux-api-headers 2.6.37-1
    linux-firmware 20110201-1
    logrotate 3.7.9-1
    lsdvd 0.16-4
    lvm2 2.02.82-2
    lxappearance 0.5.0-1
    lxdm 0.3.0-1
    lzo2 2.04-1
    m4 1.4.15-1
    mailx 8.1.1-7
    make 3.81-5
    man-db 2.5.9-1
    man-pages 3.32-1
    mc 4.7.4-1
    mdadm 3.1.4-1
    medit 1.0.0-1
    meld 1.4.0-3
    metacity 2.30.3-1
    midori 0.3.0-1
    mingw32-gcc 4.5.2-1
    mingw32-w32api 3.15-1
    mkinitcpio 0.6.8-1
    mlocate 0.23.1-2
    moc 2.4.4-3
    module-init-tools 3.12-2
    mp3unicode 1.2-4
    namcap 2.7-1
    nano 2.2.6-1
    nautilus 2.32.2.1-1
    ncdu 1.7-1
    ncurses 5.7-4
    net-tools 1.60-14
    netbeans 6.9.1-1
    netcfg 2.5.4-1
    network-manager-applet 0.8.2-2
    networkmanager 0.8.3-0.20110113
    nitrogen 1.5.1-1
    notification-daemon 0.4.0-4
    ntfs-3g 2011.1.15-1
    ogle 0.9.2-12
    openal 1.12.854-2
    openjdk6 6.b20_1.9.5-1
    openldap 2.4.23-4
    openntpd 3.9p1-13
    openssh 5.8p1-1
    ortp 0.16.3-1
    p7zip 9.13-2
    pacman 3.4.3-1
    pacman-mirrorlist 20101223-1
    pam 1.1.3-1
    parcellite 0.9.3-1
    patch 2.6.1-2
    pciutils 3.1.7-3
    pcmciautils 017-1
    pcre 8.12-1
    perl 5.12.3-1
    pkg-config 0.25-3
    pmtools 20101124-1
    poppler 0.16.2-2
    poppler-data 0.4.4-1
    popt 1.16-3
    powertop 1.13-2
    preload 0.6.4-2
    procinfo-ng 2.0.304-2
    procps 3.2.8-3
    psmisc 22.13-1
    pwgen 2.06-2
    pycrypto 2.3-1
    python-dateutil 1.5-2
    python-notify 0.1.1-8
    python-rsvg 2.32.0-4
    qt 4.7.1-3
    readline 6.1.002-2
    recordmydesktop 0.3.8.1-5
    reiserfsprogs 3.6.21-3
    samba 3.5.6-1
    sdparm 1.06-1
    sed 4.2.1-3
    shadow 4.1.4.2-4
    splix 2.0.0-7
    sshfs 2.2-3
    strace 4.5.20-1
    streamripper 1.64.6-1
    subversion 1.6.15-1
    sudo 1.7.4.p6-1
    sweethome3d 3.0-1
    sysfsutils 2.1.0-5
    syslog-ng 3.2.1-1
    system-config-printer-gnome 1.2.6-1
    sysvinit 2.88-2
    tar 1.25-1
    tcp_wrappers 7.6-12
    tcpdump 4.1.1-1
    terminator 0.95-2
    testdisk 6.11.3-3
    texinfo 4.13a-5
    thunderbird-de 3.1.7-1
    thunderbird-ru 3.1.7-1
    transcode 1.1.5-5
    transmission-gtk 2.13-1
    ttf-dejavu 2.32-2
    ttf-ms-fonts 2.0-7
    twf-unofficial 0.4-1
    tzdata 2010o-1
    ubuntulooks 0.9.12-2
    udev 165-1
    unrar 4.0.6-1
    unzip 6.0-5
    upm 1.6-1
    usbutils 001-2
    util-linux-ng 2.18-4
    valgrind 3.6.0-3
    vi 050325-3
    vim 7.3.102-1
    vlc 1.1.7-2
    vlc-plugin 1.1.7-2
    volti 0.2.3-1
    wget 1.12-2
    which 2.20-4
    wine 1.3.13-1
    wings-bin 1.2-1
    wireshark-gtk 1.4.3-1
    worldofgoo 1.41-2
    wpa_supplicant 0.7.3-1
    wxformbuilder 3.1.70-1
    xarchiver 0.5.2-1
    xcursor-neutralplus 1.2-2
    xf86-input-synaptics 1.3.0-2
    xf86-video-intel 2.14.0-1
    xfsprogs 3.1.4-1
    xinetd 2.3.14-6
    xmms2 0.7DrNo-8
    xorg-server 1.9.4-1
    xorg-xinit 1.3.0-2
    xterm 267-1
    yaourt 0.9.5.1-1
    yelp 2.30.2-1
    zim 0.49-1
    zip 3.0-1.1
    zlib 1.2.5-3

    In case anyone is interrested, here is the section of my pacman log during the "cleaning" that resulted in being able to use terminator without python2-bonobo.
    [2011-02-08 12:03] Running 'pacman -Rs thunar-vfs'
    [2011-02-08 12:03] Running 'pacman -Rs thunar-vfs squeeze'
    [2011-02-08 12:03] removed squeeze (0.2.3-4)
    [2011-02-08 12:04] removed thunar-vfs (1.2.0-2)
    [2011-02-08 12:04] Running 'pacman -Rs hal'
    [2011-02-08 12:04] Running 'pacman -Rs hal gnome-vfs'
    [2011-02-08 12:04] Running 'pacman -Rs hal gnome-vfs libgnome'
    [2011-02-08 12:04] Running 'pacman -Rs hal gnome-vfs python2-gnomevfs'
    [2011-02-08 12:04] Running 'pacman -Rs hal gnome-vfs python2-gnomevfs python2-libgnome'
    [2011-02-08 12:04] Running 'pacman -Rs hal gnome-vfs python2-gnomevfs python2-libgnome rhythmbox'
    [2011-02-08 12:04] Running 'pacman -Rs hal gnome-vfs python2-gnomevfs python2-libgnome rhythmbox'
    [2011-02-08 12:05] Running 'pacman -Rs hal gnome-vfs python2-gnomevfs python2-libgnome rhythmbox libgnome'
    [2011-02-08 12:05] Running 'pacman -Rs hal gnome-vfs python2-gnomevfs python2-libgnome rhythmbox libgnome mysql-gui-tools libbonoboui'
    [2011-02-08 12:05] Running 'pacman -Rs hal gnome-vfs python2-gnomevfs python2-libgnome rhythmbox libgnome libbonoboui libgnomeui'
    [2011-02-08 12:07] Running 'pacman -Rs hal gnome-vfs python2-gnomevfs python2-libgnome rhythmbox libgnome libbonoboui libgnomeui gsynaptics mysql-gui-tools'
    [2011-02-08 12:07] Running 'pacman -Rs hal gnome-vfs python2-gnomevfs python2-libgnome rhythmbox libgnome libbonoboui libgnomeui gsynaptics mysql-gui-tools baobab gnucash'
    [2011-02-08 12:08] removed gnucash (2.2.9-10)
    [2011-02-08 12:08] removed slib (3b3-1)
    [2011-02-08 12:08] removed libofx (0.9.1-1)
    [2011-02-08 12:08] removed opensp (1.5.2-1)
    [2011-02-08 12:08] removed goffice (0.8.12-1)
    [2011-02-08 12:08] Updating Font Cache
    [2011-02-08 12:08] removed baobab (2.4.2-3)
    [2011-02-08 12:08] removed mysql-gui-tools (5.0r14-4)
    [2011-02-08 12:08] removed gtkhtml (3.32.1-1)
    [2011-02-08 12:08] removed gsynaptics (0.9.16-1)
    [2011-02-08 12:08] removed rhythmbox (0.13.3-1)
    [2011-02-08 12:08] removed totem-plparser (2.32.2-1)
    [2011-02-08 12:08] removed python2-gconf (2.28.1-7)
    [2011-02-08 12:08] removed python-mako (0.3.4-4)
    [2011-02-08 12:08] removed python-markupsafe (0.9.2-2)
    [2011-02-08 12:08] removed python-beaker (1.5.4-2)
    [2011-02-08 12:08] removed media-player-info (12-1)
    [2011-02-08 12:08] removed libgpod (0.8.0-1)
    [2011-02-08 12:08] removed mutagen (1.20-3)
    [2011-02-08 12:08] removed libdmapsharing (2.1.8-1)
    [2011-02-08 12:08] removed json-glib (0.12.2-1)
    [2011-02-08 12:08] removed gvfs-afc (1.6.6-1)
    [2011-02-08 12:08] removed libimobiledevice (1.0.4-1)
    [2011-02-08 12:08] removed usbmuxd (1.0.6-2)
    [2011-02-08 12:08] removed libplist (1.3-2)
    [2011-02-08 12:08] removed python2-libgnome (2.28.1-7)
    [2011-02-08 12:08] removed python2-bonobo (2.28.1-7)
    [2011-02-08 12:08] removed pyorbit (2.24.0-3)
    [2011-02-08 12:08] removed python2-gnomecanvas (2.28.1-7)
    [2011-02-08 12:08] removed libgnomeui (2.24.4-1)
    [2011-02-08 12:08] removed libbonoboui (2.24.4-1)
    [2011-02-08 12:08] removed libgnomecanvas (2.30.3-1)
    [2011-02-08 12:08] removed libgnome (2.32.0-3)
    [2011-02-08 12:08] removed libgnome-data (2.32.0-3)
    [2011-02-08 12:08] removed python2-gnomevfs (2.28.1-7)
    [2011-02-08 12:08] removed libbonobo (2.32.0-1)
    [2011-02-08 12:08] removed gnome-vfs (2.24.4-1)
    [2011-02-08 12:08] removed hal (0.5.14-6)
    [2011-02-08 12:08] removed hal-info (0.20091130-1)
    [2011-02-08 12:08] removed dmidecode (2.11-1)
    [2011-02-08 12:08] Running 'pacman -Rs hal'
    [2011-02-08 12:09] Running 'pacman -S ha'
    [2011-02-08 12:09] Running 'pacman -S hal'
    [2011-02-08 12:09] installed hal-info (0.20091130-1)
    [2011-02-08 12:09] installed dmidecode (2.11-1)
    [2011-02-08 12:09] installed hal (0.5.14-6)
    [2011-02-08 12:09] Running 'pacman -Rs hal'
    [2011-02-08 12:09] removed hal (0.5.14-6)
    [2011-02-08 12:09] removed hal-info (0.20091130-1)
    [2011-02-08 12:09] removed dmidecode (2.11-1)

  • Can you help me solve my aspect ratio issue?

    Hey guys,
    I'm posting this in hopes that someone can help me solve an aspect ratio issue with a project that I have to finish by tomorrow.
    I'm trying to avoid having to re-edit the entire thing.
    I shot the project with my Nikon D7000 DSLR. in 720p 30p (29.97)
    I am running Adobe Premiere Pro CS5 (the trial version).  I have the full version of Adobe Premiere Pro CS3.
    The reason I was working with the trial is that CS3 can't handle the H.264 MOVs that the D7000 records.
    You can work with a timeline, but if you try to export anything, it never works.  I always have to convert my footage to ProRes MOVs with MPEG Streamclip before I can work with them is CS3.  That takes a lot of time and a lot of hard drive space.  After much research, I found out that CS5 is the way to go for DSLR footage.  I just need to save up my pennies for the upgrade.
    So I thought I'd edit this short (1 minute) project with the trial to see how CS5 works with the D7000 footage.
    Upon installing the trial program, I found that the project presets were limited.  I knew this ahead of time because it's clearly stated on the Adobe's website.
    But I wasn't aware how limited they are.
    Since "DSLR 1280x720p 30p" is not an option with the trial, I was going to use HDV 720p 30p.  But that was not an option either!
    So basically, my only option for 16x9 30p was "DV NTSC Widescreen".  It's my understanding that this is 864x480 (in square pixel aspect ratio) or 720x480  (in widescreen pixel aspect ratio)   I needed the output file to be 864x486.  I downsized the footage to 69% in the "Video Effects: Motion" setting so it looked correct in the project.  I didn't think about those extra 6 pixels until I outputed the file and saw thin black lines on the top and bottom.  My guess is that Premiere is adding black pixels because my project is technically 720x480 (1.2121)
    Any thoughts on how I can get a clean 864x486 export?  I'd rather not re-edit the whole thing...which I would have to do in CS3 after I spent a few hours converting the original files in MPEG Streamclip.  I don't know if there is a way to export something out of CS5 and then open a new project in CS3 to make this work.
    Thanks in adavance!
    - Jordan

    On export, just crop a few pixels off of each side; that'll let the image scale correctly to the output frame size without black bars.
    I'm not running the trial, but you should still be able to create a custom sequence preset using the Desktop editing mode. Just switch over to the General tab when you create a new sequence, and choose "Desktop" from the editing modes. Set the rest of the parameters as you need them.
    Even easier: once you've imported your footage, just drag a clip to the New Item icon at the bottom of the project panel; a sequence will be created matching your footage parameters. You can edit at full-resolution, and then export to your desired frame size when complete--you'll probably still need to crop a few pixels (in the Export Settings window) to eliminate the black bars.

  • UE4 demos not running due to dependency issues after upgraded from Windows 7 x64 to Windows 8.1 Pro x64

    Hi, I posted a more in detail thread about this on the UE4 forums. 
    https://answers.unrealengine.com/questions/84890/dependency-issues-with-running-ue4-demos.html

    Hi,
    Are you using a Gmail account on both Outlook PC client and on the phone? Is it an IMAP account?
    Since you mentioned it also occurs to your phone, have you tried to logon the Gmail webmail to check the account status? If new emails sent to the account don't show up on the phone, it's not isolated to Outlook then, we need to contact the Gmail support
    to get this issue addressed.
    For the emails missing issue, I suggest you just open the .pst file instead of importing it. In Outlook 2013, go to FILE tab -> Open & Export -> Open Outlook Data File -> Browse to the .pst file and open it. It should then be displayed
    in the account list on left. Check if the emails are still missing.
    If you can confirm you included the emails in 2014 but they are still nowhere in sight, they may be filtered by the Outlook View. Run Outlook with the switch "/cleanviews" to check whether the emails are shown:
    Press Win + R, type "outlook.exe /cleanviews" in the blank box, press Enter. Outlook will reset default view, all custom views will be lost.
    Let me know if you have further questions.
    Regards,
    Melon Chen
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • After installing VLC (64bit), my MBP only reads CDs and ejects DVDs. Uninstalling VLC did not fix the problem.  What do I do?

    I have recently installed VLC media player (64bit), played a movie file on a DVD+RW for 30 seconds, then decided to stop the movie.  I poped the DVD out, and a minute later I reinserted the same DVD, it was ejected after 10 second.  Now when ever I insert the DVD in my MBP it gets ejected.  It reads my CDs but does not read my DVD. Uninstalling VLC did not fix it.  I am not even sure at this if VLC caused the problem.  What do I do?

    Have you rebooted since uninstalling VLC?

  • Has anyone solved the "garbled characters" issue i...

    When I use Nokia Maps on my N95, all streets and towns which contain special characters such as: é, è, ü, ä, ö, etc… do appear garbled. For example,
    Zürich appears as: Zã¼rich
    München appears as: Mã¼nchen
    Liège appears as: Liã"ge
    I saw a couple posts on this forum where people suggested to format the memory card, some other suggested to reload the firmware (my N95 has 12.0.013) but nothing has helped. I went as far as using someone's PC whose WinXP is installed in French - I thought that maybe the operating system or regional settings could have some influence, but I was wrong.
    Has anyone solved this extremely annoying issue?
    Thx

    I solved it. It took me one evening. I wonder why Nokia haven't published any comments on this old issue.
    Solution can be found below, but before I want to tell about some technical details. Maybe guys at Nokia will read them
    As someone on this forum said before the problem is that map names are in UTF-8 format, but phone tries to show them using another encoding. After some googling I found that this issue is well-known because Nokia phones use ISO 8859-1 (which is similar to Windows-1252, Western European) by default but some application assume UTF-8 to be default.
    At first, I discovered that when I start Nokia map with empty SD card and allow it to download something from internet, all names were shown correctly. I supposed that the problem sits in that awful Map Loader, but I was wrong: it does absolutely nothing special with data files, just downloading and unzipping. And this super-mega-feature-rich-map-loader require about 40Mb to download for .NET 3.0 plus 10 Mb for itself. Never seen anything worse
    So I've started to compare contents of one SD card with incorrect street and city names and another with correct.
    After some time I came across Cachedatheader.cdt file in diskcache folder. And what do you think?
    The file from correct SD card contains a literal string: "UTF-8". While incorrect one contains a string saying "ISO 8859-1". I've nearly fell out of my chair after seeing that.
    I've replaced wrong file with correct one and names became readable on all my 180mb of previously downloaded maps.
    Finally, after playing with it some more I found a simple solution which should work for everyone:
    ***** SOLUTION *****
    1. Enable internet access in Nokia Maps application (set it to When Needed).
    2. Access memory card from your PC and go to "\PRIVATE\20001f66\diskcache" folder.
    3. Delete "CachedatHeader.cdt" file. Perhaps you should backup it somewhere before deleting, but it looks like it can be removed safely without affecting existing maps.
    4. Put the card back in the phone if you extracted it and start Nokia Maps.
    5. Allow Nokia Maps to access internet and try downloading some new locations (you don't need to download much, just let it access server) or searching for something.
    6. Now codepage should be correct and all names become readable.
    This effect seems to be permanent and will stay even if you disable internet access later. Also note that you don't have to format card, remove or reinstall any map files. The problem is just in one small file.
    Nokia Maps recreates missing CachedatHeader.cdt, but it will recreate it correctly only if internet access is enabled when it starts. Probably the best way to avoid wrong codepage problem is to enable internet access at first start of Nokia Maps and use Map Loader only after downloading some bits of map directly from the phone.
    Message Edited by ankor85 on 09-Jan-2008 09:02 PM

  • [svn:fx-trunk] 12060: Fix dependency issues

    Revision: 12060
    Revision: 12060
    Author:   [email protected]
    Date:     2009-11-20 12:12:21 -0800 (Fri, 20 Nov 2009)
    Log Message:
    Fix dependency issues
    QE Notes: None
    Doc Notes: None
    Bugs: SDK-24353, SDK-24354
    Reviewer: Corey
    API Change: No
    Is noteworthy for integration: No
    tests: checkintests mustella/gumbo/components/DropDownList
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-24353
        http://bugs.adobe.com/jira/browse/SDK-24354
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/supportClasses/GroupBase.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/supportClasses/SkinnableCom ponent.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/utils/TextUtil.as
    Added Paths:
        flex/sdk/trunk/frameworks/projects/spark/src/spark/utils/FTETextUtil.as

  • Why would Extension Manager CS6 report dependency issues for 29 InDesign CS6 factory plug-ins?

    Suddenly Extension Manager CS6 is reporting dependency issues for 29 InDesign CS6 factory plug-ins. I made no changes to those plugins that might have precipitated this. Anyone have any ideas about what might have happened? (This is happening with Extension Manager 6.0.8.28 and InDesign 8.0.2.) Some examples of the plugins reported as not meeting dependency condition are the following:
       Book Panel (8.0.0.370)
       PDF (8.0.2.413)
       Snippet (8.0.0.370)
       XML (8.0.2.413)
       XMLParser (8.0.0.370)
    Hayden

    1. You only pasted one log file (log0.log?), there is another more important log file: ExtensionManager.log you dind't paste.
    2. Have you removed ALL mxi files from ALL subfolders of BOTH "C:\ProgramData\Adobe\Extension Manager CS6\EM Store" AND "C:\Users\<UserName>\AppData\Roaming\Adobe\Extension Manager CS6\EM Store" to separate folder? If yes, Extension Manager shouldn't hang.
    3. Please make sure you have "Full control" permission to ""C:\ProgramData\Adobe\Extension Manager CS6\Configuration\DB\ExMan.db" and "C:\Users\<UserName>\AppData\Roaming\Adobe\Extension Manager CS6\Configuration\DB\ExManUser.db". You can check it in "Security" tab page of "Properties" dialog box.

  • How do i solve the activate app issue in DPS App Builder?

    I have no apps showing up in the download section of DPS App Builder.
    And on the App Status section, I am being prompted to activate app?
    Can anyone help please?

    I have a creative cloud subscription. 
    Sent from Samsung MobilePrabhjyot Kaur <[email protected]> wrote:Re: How do i solve the activate app issue in DPS App Builder?
    created by Prabhjyot Kaur in Digital Publishing Suite - View the full discussion
    If you are DPS single edition user, then you need to enter serial number to activate app.
    But it would be more helpful if you let us know which DPS edition you have?
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/4853715#4853715
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4853715#4853715
    To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4853715#4853715. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Digital Publishing Suite by email or at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • When is Apple going to release an update to our software that will eliminate a thiefs ability once the phone is stolen to turn off the find my phone option without first entering the security code? I think that this would solve a ton of issues.

    When is Apple going to release an update to our software that will eliminate a thiefs ability once the phone is stolen to turn off the find my phone option without first entering the security code? I think that this would solve a ton of issues.

    It would be a voilation of privete laws of many countries
    Every attempt to fight "evil" have a backside likely the reason they have not don so yet
    In the country i live in if stolen i repport the imei number of the phone to the police and the have all carriers and carriers they work with in other countries block the phone from ever being used as a phone

  • How to release plugin(solve dependency issues)

    I've developed a illustrator plugin dependent on Qt library, it runs well on the develop machine.
    The libOliveLib.dylib is a shared library which developed by Qt.
    Following are the dependencies of the plugin:
    /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa (compatibility version 1.0.0, current version 15.0.0)
    @executable_path/../Frameworks/QtCore.framework/Versions/5/QtCore (compatibility version 5.4.0, current version 5.4.0)
    @executable_path/../Frameworks/QtGui.framework/Versions/5/QtGui (compatibility version 5.4.0, current version 5.4.0)
    @executable_path/../Frameworks/QtWidgets.framework/Versions/5/QtWidgets (compatibility version 5.4.0, current version 5.4.0)
    @executable_path/../Frameworks/QtXml.framework/Versions/5/QtXml (compatibility version 5.4.0, current version 5.4.0)
    @executable_path/../Frameworks/libOliveLib.dylib (compatibility version 0.0.0, current version 0.0.0)
    /usr/lib/libstdc++.6.dylib (compatibility version 7.0.0, current version 7.9.0)
    /usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 125.2.0)
    /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation (compatibility version 150.0.0, current version 550.29.0)
    /usr/lib/libobjc.A.dylib (compatibility version 1.0.0, current version 227.0.0)
    And the dependencies of libOliveLib:
    @executable_path/../Frameworks/libOliveLib.dylib (compatibility version 0.0.0, current version 0.0.0)
      @executable_path/../Frameworks/QtWidgets.framework/Versions/5/QtWidgets (compatibility version 5.4.0, current version 5.4.0)
      @executable_path/../Frameworks/QtGui.framework/Versions/5/QtGui (compatibility version 5.4.0, current version 5.4.0)
      @executable_path/../Frameworks/QtCore.framework/Versions/5/QtCore (compatibility version 5.4.0, current version 5.4.0)
      /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration (compatibility version 1.0.0, current version 1.0.0)
      /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit (compatibility version 1.0.0, current version 275.0.0)
      @executable_path/../Frameworks/QtXml.framework/Versions/5/QtXml (compatibility version 5.4.0, current version 5.4.0)
      /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL (compatibility version 1.0.0, current version 1.0.0)
      /System/Library/Frameworks/AGL.framework/Versions/A/AGL (compatibility version 1.0.0, current version 1.0.0)
      /usr/lib/libstdc++.6.dylib (compatibility version 7.0.0, current version 104.1.0)
      /usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 1213.0.0)
    But when I deploy it to other machine, it crashed. I think it caused by dependency.
    Any one has this issue before, could you please give me your suggestions or your solutions
    Many hanks!

    Hi LeoTaro,
    Thanks for your response!
    This issue can be solved by adding qt.conf file to folder "/Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Resources".
    But this folder is Application resources folder or Adobe Illustrator, I think add qt.conf file to this folder doesn't make sense.
    Is there any alternative ways?
    I've also tried adding "QCoreApplication::addLibraryPath()" and "QCoreApplication::libraryPaths()", but it doesn't work.
    Best Regards,
    Jae Liu

  • I had Acrobat XI Pro Trial installed on W8.1, and I had to uninstall it because issues with MS Office 2010. Now I try to reinstall Acrobat and It does not allow me to use the trial version anymore even it was not over. What to do??

    Well, I had installed in my new computer a trial version from Acrobat XI Pro, but I had issues with Microsoft Word 2010, since it did not allow me to save changes on my file. I uninstalled it from my computer before the trial period was over, and then, after I solved the issue with Office, I wanted to get it back for a time, but the installer does not allow me to choose Trial Version. I can reach that screen where you choose between key and trial, but once I press trial and click on next, it does absolutely nothing at all.
    I have tried to manually delete folders, and I even used CC Clean to make a registry set up, but nothing out of that is working for me at all, and it keeps happening. I have no really idea what to do, and I kinda need to use Acrobat immediately for a file.

    The trial can only be loaded 1 time as far as I know. You could try http://labs.adobe.com/downloads/acrobatcleaner.html, remove any left over parts of the Acrobat folder, and reboot. Then try an install again, but my guess is you will have to purchase Acrobat at this point.

  • How to install this update and solve USB and touchpad issues?

    I have Equium M50 (59E) and got bitten by an update that took out my touchpad and keyboard .I have made fresh install of XP Home and have all updated drivers and all is going well .The last update i cant seem to fathom is for
    Driver Ana _2005_10_24_V1.2 it is for ,Standard Open HCD USB Host Controller........X 2 .........
    The update fixes all kinds of issues of the kind i am having and is a recomended update from Driver detective ,that i use offten .
    The trouble is it says to uninstall drivers for the one i have installed allready and when i do this it knocks off my USB mouse leaving me not able to install the new ones .When i reboot it installs the ones i dont want reinstalled .
    This is the read me off the new update and realy it is beyond me to underdstand what to do ............so here it is ?
    Driver revision history:
    Twinhan VP704A Driver Release note
    Note:
    1.In case the system crashes while running with VP704A, Please install ULI
    USB 2.0 host driver in \ULiUSB20Driver
    2. For XP/SP1, please update with the patch in
    <http://www.microsoft.com/downloads/details.aspx?displaylang=zh-tw&familyid=733dd867-56a0-4956-b7fe-e85b688b7f86>
    3.In XP/SP1, updating driver will crash the system, while new install is ok.
    The trick to update driver in XP/SP1 is shown in the following steps,
    a. Uninstall the driver
    b. Unplug and plug the USB device
    c. Install the driver
    4. To support remote controller, please launch Agent.exe in \Agent.
    Further details can be found in \Agent\Readme.txt
    Known issues:
    1. Multi-instance is not supported
    2. Remote wakeup is not supported
    3. High CPU usage in Analog audio/video capture
    4. Bad VBI Signal using YUY2 color format
    5. AV out of sync if audio captured from wrong filter.
    (Fix:using the filter "USB Audio Device" in WDM stream capture device)
    6. Noise with analog-TV and FM Radio
    (Fix:using the filter "USB Audio Device" in WDM stream capture device)
    Driver revision history:
    2005/10/24, Version: 1.0.2.8
    Bugs fixed and new features:
    1.Crossbar not properly set.
    2005/10/21, Version: 1.0.2.7
    Bugs fixed and new features:
    1.Firmware version read from FLASH OK!
    2005/10/14, Version: 1.0.2.6
    Bugs fixed and new features:
    1.Mutil-Access driver blank part below part screen when VBI!
    2.Mutil-Access driver HCT driver verify crash fix!
    2005/10/07, Version: 1.0.2.5
    Bugs fixed and new features:
    1.Tuner Power off when S-Video,Composite.
    2005/09/30, Version: 1.0.2.4
    Bugs fixed and new features:
    1.Agent.exe updated for repeat bug!
    2.TI5150 Register for Video Format fix!
    2005/09/29, Version: 1.0.2.3
    Bugs fixed and new features:
    1.A trial driver build for multiple access support. (in the folder "\Multi-Access")
    Note: "USB Audio device" filter provided by system does not support mutil-Access.
    2.Reset TI5150 when a new frequency is set
    2005/09/27, Version: 1.0.2.2
    Bugs fixed and new features:
    1.Fix I2C unstable access on some devices.
    2005/09/23, Version: 1.0.2.1
    Bugs fixed and new features:
    1.Analog TV becomes darker sometimes.
    2005/09/15, Version: 1.0.2.0
    Bugs fixed and new features:
    1.Fix INF for Windows 2000 installation.
    2.FM radio scan policy changed!
    2005/09/13, Version: 1.0.1.9
    Bugs fixed and new features:
    1.USB serial number string not visible with USBView, firmware update required.
    2.FM radio scan policy, return unlock if PLLOffset>=9x12.5KHz
    2005/09/13, Version: 1.0.1.8
    Bugs fixed and new features:
    1.After switching between A/D/AV several times, video display becomes dark in THDTV 2.61
    2005/09/12, Version: 1.0.1.7
    Bugs fixed and new features:
    1.Improve channel lock status check performance
    2.Pinnacle INF Fix.
    2005/09/09, Version: 1.0.1.6
    Bugs fixed and new features:
    1.Add some audio initialization function.
    2005/08/31, Version: 1.0.1.5
    Bugs fixed and new features:
    1.NTSC & PAL mode resolution separation.
    2005/08/30, Version: 1.0.1.4
    Bugs fixed and new features:
    1.AvgTimePerFrame.
    2.Frame Drop.
    3.Pinnacle inf file HCT chkinf fail.
    2005/08/22, Version: 1.0.1.3
    Bugs fixed and new features:
    1.Add Remote controller interface in digital source filter.
    2.A new Remote controller test tool with source code in \Test_RC.
    2005/08/16, Version: 1.0.1.2
    Bugs fixed and new features:
    1.Reorg Pinnacel & Twinhan's driver & folder.
    2.VP704A_BDA_Test tool, add system code test.
    3.Set IR protocol standard by registry keys "IRSTANDARD", "IRSYSCODECHECK1" in INF file.
    4.Firmware update
    2005/08/15, Version: 1.0.1.1
    Bugs fixed and new features:
    1.Serial number function is lost while adjusting TV audio volume
    2.RC6A CIR support
    (This firmware uses GPIO3 (M9207 pin 80) to decode RC6 protocol.
    The hardware should be reworked to connect M9207 pin 80 to CIR module and the fimrware
    EEPROM should be flashed with \Firmware\M9207.bin )
    3.Serieal number, MAC address and OEM device name supported.
    Please refer to further details in \Firmware\readme.txt.
    4.Ioclt sample source code included.
    2005/08/08, Version: 1.0.0.10
    Bugs fixed and new features:
    1.Analog TV audio volume increase.
    2005/08/04, Version: 1.0.0.9
    Bugs fixed and new features:
    1.Analog TV Video mode set failure.
    2005/08/03, Version: 1.0.0.8
    Bugs fixed and new features:
    1.Off-centerf requency scan +/- 125Khz
    2.Fix duplicated program scanned in MCE.
    2005/08/02, Version: 1.0.0.7
    Bugs fixed and new features:
    1.THBDAConsole.exe "ulFixedBW", "ulDisableOffFreqScan", "ulMCEFreqTranslate" bug fixed
    2005/07/28, Version: 1.0.0.6
    Bugs fixed and new features:
    1.THBDAConsole.exe "ulFixedBW", "ulDisableOffFreqScan", "ulMCEFreqTranslate" support
    2.Improve I2C communication stability.
    3.Unify Signal strength & quality indication as THBda ioctl interface.
    4.Capture filter Lock status check.
    2005/07/28, Version: 1.0.0.5
    Bugs fixed and new features:
    1. The same signal strength & quality indications as VP7046.
    2. Debug build driver
    2005/07/21, Version: 1.0.0.4
    Bugs fixed and new features:
    1.Update INF.
    2005/07/20, Version: 1.0.0.3
    Bugs fixed and new features:
    1.Improve performance in PCM4
    2.Switching from Analog TV Mode to FM Mode failure
    2005/07/04, Version: 1.0.0.2
    Bugs fixed and new features:
    1.Production Tool FM test OK!
    And here is the readme from the other file within the update ?
    ULi PCI to USB Enhanced Host Controller Driver V1.72 for Windows 98 SE, Windows ME , Windows 2000 and Windows XP
    INTRODUCTION
    This driver supports ULi EHCI host Controller under Windows 98 SE, Windows ME , Windows 2000
    and Windows XP.
    CONTENTS OF THIS DOCUMENT
    1. Installation Instructions
    2. Uninstallation Instructions
    1. Installation Instructions
    (Windows 98 SE & Windows ME)
    A.When ULi USB 2.0 Controller has attached on system
    1. Install ULi USB2.0 Driver
    - Run the setup program.
    - This program will copy driver files into your Windows system,then restart your computer.
    2. After system reboot, Windows will find the new hardware "ULi PCI to USB Enhanced
    Host Controller" and install the driver.
    B.If no ULi USB 2.0 Controller on system
    1. Install ULi USB2.0 Driver
    - Run the setup program.
    - This program will copy driver files into your Windows system, then turn off your computer.
    - Attach ULi USB 2.0 Controller card on your system and then reboot your computer.
    2. After system reboot, Windows will find the new hardware "ULi PCI to USB Enhanced
    Host Controller" and install the driver.
    (Windows 2000)
    A.When ULi USB 2.0 Controller has attached on system
    1. Install ULi USB2.0 Driver
    - Run the setup program.
    - This program will install and load the driver and you don't have to reboot the
    computer.
    B.If no ULi USB 2.0 Controller on system
    1. Install ULi USB2.0 Driver
    - Run the setup program.
    - This program will copy driver files into your Windows system, then turn off
    your computer.
    - Attach ULi USB 2.0 Controller card on your system and then reboot your computer.
    2. After system reboot, Windows will find the new hardware "ULi PCI to USB Enhanced
    Host Controller" and install the driver.
    (Windows XP)
    A.When ULi USB 2.0 Controller has attached on system
    1. Install ULi USB2.0 Driver
    - Run the setup program.
    - Click "NEXT"
    - This program will install and load the driver and you don't have to reboot the
    computer.
    - After install ULi USB 2.0 driver successfully. System will detect "USB 2.0 Root
    Hub". Please select "install the software automatically (Recommended)" and then
    click "Next" button to continue install.
    - This program will install and load the driver and you don't have to reboot the
    computer.
    B.If no ULi USB 2.0 Controller on system
    1. Install ULi USB2.0 Driver
    - Run the setup program.
    - This program will copy driver files into your Windows system, then turn off
    your computer.
    - Attach ULi USB 2.0 Controller card on your system and then reboot your computer.
    2. After system reboot, Windows will find the new hardware "ULi PCI to USB Enhanced
    Host Controller", continue to install.
    - After install ULi USB 2.0 driver successfully. System will detect "USB 2.0 Root
    Hub". Please select "install the software automatically (Recommended)" and then
    click "Next" button to continue install.
    Notice:
    If you can't setup driver successfully. Please reboot your system and then follow
    above steps to install driver again.
    2. Uninstallation Instructions
    1. Open "Control Panel" folder.
    2. Invoke "Add\Remove Programs" icon.
    3. Choose "ULi USB2.0 Driver" item.
    4. Click on "Add/Remove" button to remove drivers.
    Change List:
    1.74
    1.fix issue that multi-interface keyboard can not be detected on the usb2.0 hub.
    2.support all USB2.0 Host Controller.
    1.73
    1.fix issue that On Win98SE , Blue screen when unplugging some USB2.0 Scanner after scanning image.
    2.fix issue that On Win98SE, Blue screen when unplugging some USB2.0 Scanner from USB 2.0 Hub after scanning image.
    3.fix issue that On Win98SE, Blue screen while copying files across the SUNBOX UH-204 Hub.
    4.fix issue that wirless lan will disconect when plug-in usb device.
    1.72
    1.Fix issue that system will crash when USB HD copy large file.
    1.71
    1.improve Power management function in Win98/ME.
    1.70
    1.Improve the function of devcie detection.
    1.62
    1.Fix the problem that a USB floppy under USB 2.0 HUB cannot function when system resume from suspend.
    1.61
    1.Fix the problem that some USB device under USB 2.0 HUB cannot be found if system resume from suspend.
    1.60
    1.To support power management functions when a HUB with USB device plug into
    a root HUB.
    1.57
    1.Fix USB floppy with USB 2.0 HUB can't be detect issue.
    2.Fix issue that audio can't display smooth when USB device attach to system.
    3.Fix system can't detect USB dvice when USB device attach to system in
    suspend mode.
    4.Fix issue that when USB root HUB have full loading, USB HD sometimes
    transaction fail.
    1.56
    1. Fix issue that DVD decoder device can't display properly.
    1.55
    1. Fix OTI USB 2.0 hand drive can't be detect issue.
    2. Fix USB mouse can't use after resume from suspend.
    1.54
    1.Improve driver security.
    1.53
    1. Fix bulk transfer may stop if USB device is plugged in USB 2.0 hub
    2. Fix USB 2.0 mass storage device can't be access after resuming from standby if there is another USB 1.1 device existing
    1.52
    1. Fix system pages fault when accessing mass storage device in Win98SE, or scandisk failure when selecting
    automatically fix file system errors
    2. Fix system may hang up in Win98SE/ME if USB 2.0 cardbus card is plugged
    v.1.51
    1. Improve USB 2.0 cardreader compatibility.
    2. Fix USB IDE devices can't be accessed after resuming from standby/hibernation.
    v1.50
    1. Improve bulk transfer
    v1.48
    1. Fix USB 2.0 LAN driver installation hanging up
    2. Fix some USB 1.1 cardreader can't be identified when plugged into USB 2.0 hub
    3. Fix some laptops Win98SE booting hanging up
    v1.47
    1. Improve bulk transfer performance.
    2. Fix USB 2.0 bulk webcam preview failure.
    v1.46
    1. Support USB 2.0 and 1.1 Isochronous devices
    2. Fix system hanging up when rebooting system if USB 2.0 host controller is disabled in Win9X/ME
    3. Fix system hanging up when uninstalling driver if there are USB 2.0 devices connected in Win2K/XP
    4. Improve device detection capability in Win9X/ME
    v1.45
    1. Fix system hanging up when resuming from ACPI sleep mode.
    2. Fix mouse sometimes doesn't disappear when it's unplugged.
    3. Fix Win9X composite device detection failure and improve Win2K/XP composite device
    v1.44
    1. Support composite device
    2. Improve device detection
    v1.43
    1. Improve IDE read/write transfer failure rate with USB 2.0 to IDE bridge on PC card platform
    2. Fix high-speed device detected as full-speed device
    3. Fix some USB mouses detection failure problem
    4. Fix some USB 2.0 hubs detection failure problem
    5. Fix Win98SE crashing if ULi EHCI 1.42 is installed
    v1.42
    1. Fix PC Card ejection hanging up in Win98/ME
    2. Fix suspend/resume hanging up in Win98
    3. Solve sometimes USB 1.1 device can't be detected if OS boots with USB 2.0 and 1.1 devices plugged
    4. Fix some PC Card USB 1.1 device detection failure
    v1.41
    1. Add new feature that system can install driver before device is plugged.
    2. Fix PCMCIA OHCI controller resource assign issue on Windos ME.
    v1.40
    1. Support Win9X/ME/2K/XP with ULi USB 2.0 driver.
    2. Fix PCMCIA EHCI controller detecting USB 2.0 device problem in Win9X/ME.
    v1.32
    1. Fix issue that driver can't detect Microsoft driver in Windows XP
    if OS path is not c:\windows.
    2. Fix issue that driver can't detect USB 2.0 controller device in in some system.
    v1.31
    1. Fix issue that driver can't install on Windows 2000.
    v1.30
    1. Fix issue that Win9X/ME shows no USB 2.0 Root Hub.
    2. Fix issue that hanging up when second entry into Win9X S1 with HID device plugged.
    3. Fix issue that sometimes when you click "Scan for hardware changes".
    to PNP ULi USB2.0 controller, system will informs you the usbehci.sys
    file can't be found.
    4. Fix issue that v1.20 finds no EHCI controller to install driver for after different
    verison of ULi EHCI controller devices are plugged and unplugged.
    5. Support installing driver for more than one ULi EHCI controller devices existing on
    system at the same time.
    6. Fix Win2K/XP shows USB Root Hub for USB 2.0 Root Hub.
    v1.20
    1.Support ULi USB 2.0 Host controller driver for Windows 98SE/ME/2000/XP.
    ULi Coporation. (ULi) web sites:
    http://www.uli.com.tw/ (Taiwan)
    CAN ANYONE TREAT ME LIKE A TWO YEAR OLD AND GIVE SOME GUIDANCE AS TO HOW TO ACHIEVE THIS UPDATE .
    i WOULD BE VERY GRATEFULL AND KIND OF THINK IT WOULD BE BENIFICIAL TO A LOT MORE PEOPLE AS I SEE A LOT OF XP AND PROBLEMS OF THE KIND THIS UPDATE IS SUPPOSED TO FIX .

    It says above 2 relevant and 1 correct answere available .............
    I'm new here so could anyone direct me to these answeres?

Maybe you are looking for