[SOLVED] Calibre 2.8 won't run

64 bits system. This is the output:
Traceback (most recent call last):
File "/usr/bin/calibre", line 20, in <module>
sys.exit(calibre())
File "/usr/lib/calibre/calibre/gui_launch.py", line 45, in calibre
init_dbus()
File "/usr/lib/calibre/calibre/gui_launch.py", line 39, in init_dbus
from dbus.mainloop.glib import DBusGMainLoop, threads_init
ImportError: No module named dbus.mainloop.glib
Last edited by sosonok (2014-11-01 12:11:07)

arojas wrote:Install python2-dbus
It worked. Thanks.
Shouldn't be python2-dbus among Calibre dependencies?

Similar Messages

  • [SOLVED] Compiz fusion-icon won't run

    Hello,
    I'm new to Arch Linux and I've just installed it on my laptop. I want to run Compiz on XFCE: I tried the methods on the Arch Wiki (https://wiki.archlinux.org/index.php/Co … icon.22.29) on replacing XFWM with Compiz. The second method doesn't work, only the first one works, but I don't want to use that one.
    I've tried the third method, but when I followed the instructions and I rebooted my computer, I've got no window manager at all: I have to manually load Compiz.
    The only thing that works right now is following the third method and also do the first one at together.
    But I just want to do either the second or the third method. Does anyone know how to solve this problem?
    Thank you in advance.
    (Sorry for bad English).
    Last edited by jonasty123dm (2013-02-27 18:46:56)

    ewaller wrote:It is your system, so do as you will.   I really do not recommend running compiz as root.  Enough said.
    Hi, I didn't mean running Compiz as root: I just edited this file: "/etc/xdg/xfce4/xfconf/xfce-perchannel-xml/xfce4-session.xml" to make Compiz start for all users. I followed the method without the fusion icon this time (https://wiki.archlinux.org/index.php/Co … icon.22.29) and everything works now.
    Thank you very much for the help.
    (P.S.: I don't know how to mark this thread as SOLVED).
    Last edited by jonasty123dm (2013-02-27 13:06:12)

  • [SOLVED]Ruby on Rails won't run with apache/passenger

    Hi I want to run Redmine, a Ruby on Rails application, on a personal server using MariaDB as the database and Apache with the Phusion Passenger module as the application platform. So far I am able to run Redmine with the default WeBrick server, but if I try to run it via Apache (http://192.168.1.5/redmine) I just get the directory index of  /usr/share/webapps/redmine. I've been running various php webapps using this apache installation without issues but my unfamiliarity with Ruby on Rails makes me unsure how to fix this. If I create a Ruby on Rails test  application as described at https://wiki.archlinux.org/index.php/Ru … figuration I get the same issue.
    Using the arch wiki articles on Ruby on Rails and Redmine, This is basically how I installed things:
    $ yaourt -S ruby1.9 rubygems1.9 nodejs redmine
    # gem-1.9 install rails
    # gem-1.9 install passenger
    /opt/ruby-1-9/ and subfolders ended up having no read/exexute permissions for 'other', probably because of my umask settings, so I changed the permissions, also because apache runs as user/group 'apache'.
    Ran the script that installs the passenger apache module:
    # /opt/ruby1.9/bin/passenger-install-apache2-module
    added to httpd.conf:
    LoadModule passenger_module /opt/ruby1.9/lib/ruby/gems/1.9.1/gems/passenger-4.0.5/libout/apache2/mod_passenger.so
    PassengerRoot /opt/ruby1.9/lib/ruby/gems/1.9.1/gems/passenger-4.0.5
    PassengerDefaultRuby /opt/ruby1.9/bin/ruby
    ServerName arch-server
    DocumentRoot /usr/share/webapps
    <Directory "/usr/share/webapps">
    # This relaxes Apache security settings.
    AllowOverride all
    Order allow,deny
    Allow from all
    # MultiViews must be turned off.
    Options -MultiViews
    </Directory>
    I checked if the passenger module is loaded, and judging from /var/log/httpd/error_log that seems the case:
    [ 2013-07-03 22:52:22.8947 28902/b7407700 agents/Watchdog/Main.cpp:440 ]: Options: { 'analytics_log_user' => 'nobody', 'default_group' => 'nobody', 'default_python' => 'python', 'default_ruby' => '/opt/ruby1.9/bin/ruby', 'default_user' => 'nobody', 'log_level' => '0', 'max_instances_per_app' => '0', 'max_pool_size' => '6', 'passenger_root' => '/opt/ruby1.9/lib/ruby/gems/1.9.1/gems/passenger-4.0.5', 'pool_idle_time' => '300', 'temp_dir' => '/tmp', 'union_station_gateway_address' => 'gateway.unionstationapp.com', 'union_station_gateway_port' => '443', 'user_switching' => 'true', 'web_server_pid' => '28901', 'web_server_type' => 'apache', 'web_server_worker_gid' => '1001', 'web_server_worker_uid' => '1006' }
    [ 2013-07-03 22:52:22.9120 28905/b73bd700 agents/HelperAgent/Main.cpp:555 ]: PassengerHelperAgent online, listening at unix:/tmp/passenger.1.0.28901/generation-0/request
    [ 2013-07-03 22:52:22.9262 28902/b7407700 agents/Watchdog/Main.cpp:564 ]: All Phusion Passenger agents started!
    [ 2013-07-03 22:52:22.9266 28910/b71dd700 agents/LoggingAgent/Main.cpp:271 ]: PassengerLoggingAgent online, listening at unix:/tmp/passenger.1.0.28901/generation-0/logging
    [Wed Jul 03 22:52:22 2013] [notice] Apache/2.2.24 (Unix) PHP/5.4.16 mod_ssl/2.2.24 OpenSSL/1.0.1e DAV/2 Phusion_Passenger/4.0.5 configured -- resuming normal operations
    'apachectl configtest' gives 'Syntax OK'.
    I followed the wiki on redmine (https://wiki.archlinux.org/index.php/Redmine), chose to use "bundle install" to install the required gems with only a 'production' environment. What worried me is that those gems are now in /root/.gems while the webserver runs as user 'apache'.
    I can run Redmine at 192.168.1.5:3000 without errors using:
    # ruby script/rails server webrick -e production
    But if I kill it and try via apache http://192.168.1.5/redmine I get a directory content listing.
    Last edited by rwd (2013-07-04 21:00:10)

    Thanks markocz, my use of sub-url was indeed the problem. With help from the linked article I did the following:
    # mkdir /usr/share/webapps/phusion-passenger/
    # ln -s /usr/share/webapps/redmine/public /usr/share/webapps/phusion-passenger/redmine
    # chown -R root:http /usr/share/webapps/
    # chmod -R g+rx /usr/share/webapps/
    httpd.conf now looks like this:
    LoadModule passenger_module /opt/ruby1.9/lib/ruby/gems/1.9.1/gems/passenger-4.0.5/libout/apache2/mod_passenger.so
    PassengerRoot /opt/ruby1.9/lib/ruby/gems/1.9.1/gems/passenger-4.0.5
    PassengerDefaultRuby /opt/ruby1.9/bin/ruby
    ServerName arch-server
    DocumentRoot /usr/share/webapps/phusion-passenger
    <Directory "/usr/share/webapps/phusion-passenger">
    # This relaxes Apache security settings.
    AllowOverride all
    Order allow,deny
    Allow from all
    # MultiViews must be turned off.
    Options +FollowSymLinks
    </Directory>
    RailsBaseURI /redmine
    <Directory "/usr/share/webapps/phusion-passenger/redmine">
    Options -MultiViews
    </Directory>
    Redmine now works via passenger.
    Last edited by rwd (2013-07-04 20:59:40)

  • [SOLVED] GTK 3 App won't run

    I'm forking XSIRC and I switched to GTK3. After the switch, when I try to run, I get:
          7437:   
          7437:   
          7437:    calling init: /usr/lib/libgdk-x11-2.0.so.0
          7437:   
          7437:   
          7437:    calling init: /usr/lib/libatk-1.0.so.0
          7437:   
          7437:   
          7437:    calling init: /usr/lib/libgtk-x11-2.0.so.0
          7437:   
          7437:   
          7437:    calling init: /usr/lib/libgee.so.2
          7437:   
          7437:   
          7437:    calling init: /usr/lib/libcairo-gobject.so.2
          7437:   
          7437:   
          7437:    calling init: /usr/lib/libgdk-3.so.0
          7437:   
          7437:   
          7437:    calling init: /usr/lib/libgtk-3.so.0
          7437:   
          7437:   
          7437:    calling init: /usr/lib/liblibxsirc.so
          7437:   
          7437:   
          7437:    initialize program: xsirc
          7437:   
          7437:   
          7437:    transferring control: xsirc
          7437:   
          7437:    opening file= [0]; direct_opencount=2
          7437:   
    (xsirc:7437): Gtk-ERROR **: GTK+ 2.x symbols detected. Using GTK+ 2.x and GTK+ 3 in the same process is not supported
    [1]    7437 trace trap  LD_DEBUG=files xsirc
    Any ideas on what's going wrong? All my GTK 3 apps run fine (most of my apps are actually GTK3).
    Thank you in advance.
    EDIT
    Figured it out, I had the app both on /usr/ and /usr/local I think, which caused a lot of messy stuff, I deleted everything and reinstalled, works fine now.
    Last edited by ephan (2012-10-24 17:05:18)

    You can't run iPad/iPhone apps on any Mac - it's a completely different operating system and you have to use applications designed for it. There is no equivalent app in the App Store which is available in your Applications folder, which is one way of obtaining Mac applications.

  • [SOLVED!] Conky won't run undecorated, please assist.

    Greetings,
    As suggested in my other thread, I have been working on customizing a conky script that simply shows the time, date, calendar, current weather, and forecast, and I have completed it.
    However I have ran into a problem. Up until I basically had it completed, it would run fine undecorated without any window borders and the like. But now it won't, and it laughs at me instead. If I want to see my conky, I have to have it decorated in the window border, which is a pain and something I don't want. I want it to simply blend in with my desktop.
    Anyways, I am hoping someone can help me solve this. I know it runs. If I set it to decorate, it pops up, info and all. If I set it to undecorate, it laughs at me, but shows up lxtask and htop.
    Here's my .conkyrc
    # Use Xft?
    use_xft yes
    xftfont cure:size=6
    # Update interval in seconds
    update_interval 1
    # This is the number of times Conky will update before quitting.
    # Set to zero to run forever.
    total_run_times 0
    # Create own window instead of using desktop (required in nautilus)
    own_window yes
    own_window_transparent yes
    own_window_type widget
    own_window_hints undecorate,sticky,above,skip_taskbar,skip_pager
    # Use double buffering (reduces flicker, may not work for everyone)
    double_buffer yes
    # Minimum size of text area
    minimum_size 280 5
    maximum_width 187
    # Draw shades?
    draw_shades no
    # Draw outlines?
    draw_outline no
    # Draw borders around text
    draw_borders no
    # Stippled borders?
    stippled_borders 0
    # border margins
    border_margin 5
    # border width
    border_width 0
    # Default colors and also border colors
    default_color 4d4d4d
    #default_shade_color white
    #default_outline_color black
    own_window_colour 262626
    # Text alignment, other possible values are commented
    alignment top_left
    #alignment top_right
    #alignment bottom_left
    #alignment bottom_right
    # Gap between borders of screen and text
    # same thing as passing -x at command line
    gap_x 1180
    gap_y 24
    # Subtract file system buffers from used memory?
    no_buffers yes
    # set to yes if you want all text to be in uppercase
    uppercase no
    # number of cpu samples to average
    # set to 1 to disable averaging
    cpu_avg_samples 2
    # number of net samples to average
    # set to 1 to disable averaging
    net_avg_samples 2
    # Force UTF8? note that UTF8 support required XFT
    override_utf8_locale yes
    # Add spaces to keep things from moving about? This only affects certain objects.
    use_spacer yes
    #Email:
    #${pop3_unseen **SERVER NAME** **USERNAME** **PASSWORD**} new messages
    TEXT
    ${offset 100}${alignc}${font openlogos-archupdate:size=40}${color blue}B${font}${color}
    ${color FFFFFF}${font DejaVu Sans:style=Bold:pixelsize=25}${alignc}${time %r}${font Snap.se:size=8}
    ${color FFFFFF}${alignr}${time %A, %B %e %G}
    ${color FFFFFF}${font Aerial:style=Bold:pixelsize=12}CALENDAR${font Snap.se:size=8}${hr 1}
    ${color FFFFFF}${font DejaVu Sans Mono :size=12}${pre_exec cal}
    ${color FFFFFF}${font DejaVu Sans Mono :size=6}${pre_exec cal -3 | cut -c23-44 --complement}
    ${color FFFFFF}${font Aerial:style=Bold:pixelsize=12}WEATHER${font Snap.se:size=8}${hr 1}
    ${color FFFFFF}${alignr 43}${font DejaVu Sans:size=12}${execi 3600 python ~/scripts/conkyForecast.py --location=USOH0311 --datatype=CN}${font}
    ${color FFFFFF}${alignr 43}${font Weather:size=46}${execi 3600 python ~/scripts/conkyForecast.py --location=USOH0311 --datatype=WF -i}${font}
    ${color EE6363}${voffset -30}${font Aerial:style=Bold:pixelsize=12}${execi 3600 python ~/scripts/conkyForecast.py --location=USOH0311 --datatype=HT -i}${font}
    ${color 00A54E}Low: ${color FFFFFF}${execi 3600 python ~/scripts/conkyForecast.py --location=USOH0311 --datatype=LT -i --startday=1 --endday=1} ${font DejaVu Sans Mono:size=6}» ${font}${alignr}${color 00A54E}High: ${color FFFFFF}${execi 3600 python ~/scripts/conkyForecast.py --location=USOH0311 --datatype=HT -i --startday=1 --endday=1}
    ${color 00AEED}Conditions: ${color FFFFFF}${alignr}${execi 3600 python ~/scripts/conkyForecast.py --location=USOH0311 --datatype=CC -i}
    ${color 00AEED}Wind: ${color FFFFFF}${alignr}${execi 3600 python ~/scripts/conkyForecast.py --location=USOH0311 --datatype=WS -i}
    ${color 00AEED}Humidity: ${color FFFFFF}${alignr}${execi 3600 python ~/scripts/conkyForecast.py --location=USOH0311 --datatype=HM -i}
    ${color 00AEED}Chance of Precipitation: ${color FFFFFF}${alignr}${execi 3600 python ~/scripts/conkyForecast.py --location=USOH0311 --datatype=PC -i}
    ${color FAF519}Sun Rise: ${color FFFFFF}}${execi 3600 python ~/scripts/conkyForecast.py --location=USOH0311 --datatype=SR -i --startday=1 --endday=1} ${font DejaVu Sans Mono:size=6}» ${font}${alignr}${color FAF519}Sun Set:${color FFFFFF}${execi 3600 python ~/scripts/conkyForecast.py --location=USOH0311 --datatype=SS -i --startday=1 --endday=1}
    ${color FFFFFF}${font Aerial:style=Bold:pixelsize=12}FORECAST${font Snap.se:size=8}${hr 1}
    ${color FF0000}${alignr}${execi 3600 python ~/scripts/conkyForecast.py --location=USOH0311 --datatype=DW -i --startday=1 --endday=1}
    ${color 00A54E}Low: ${color FFFFFF}${execi 3600 python ~/scripts/conkyForecast.py --location=USOH0311 --datatype=LT -i --startday=2 --endday=2} ${font DejaVu Sans Mono:size=6}» ${font}${alignr}${color 00A54E}High: ${color FFFFFF}${execi 3600 python ~/scripts/conkyForecast.py --location=USOH0311 --datatype=HT -i --startday=2 --endday=2}
    ${color FAF519}Sun Rise: ${color FFFFFF}${execi 3600 python ~/scripts/conkyForecast.py --location=USOH0311 --datatype=SR -i --startday=2 --endday=2} ${font DejaVu Sans Mono:size=6}» ${font}${alignr}${color FAF519}Sun Set:${color FFFFFF}${execi 3600 python ~/scripts/conkyForecast.py --location=USOH0311 --datatype=SS -i --startday=2 --endday=2}
    ${color FF0000}${alignr}${execi 3600 python ~/scripts/conkyForecast.py --location=USOH0311 --datatype=DW -i --startday=2 --endday=2}
    ${color 00A54E}Low: ${color FFFFFF}${execi 3600 python ~/scripts/conkyForecast.py --location=USOH0311 --datatype=LT -i --startday=3 --endday=3} ${font DejaVu Sans Mono:size=6}» ${font}${alignr}${color 00A54E}High: ${color FFFFFF}${execi 3600 python ~/scripts/conkyForecast.py --location=USOH0311 --datatype=HT -i --startday=3 --endday=3}
    ${color FAF519}Sun Rise: ${color FFFFFF}${execi 3600 python ~/scripts/conkyForecast.py --location=USOH0311 --datatype=SR -i --startday=3 --endday=3} ${font DejaVu Sans Mono:size=6}» ${font}${alignr}${color FAF519}Sun Set:${color FFFFFF}${execi 3600 python ~/scripts/conkyForecast.py --location=USOH0311 --datatype=SS -i --startday=3 --endday=3}
    Again, all I need help with is having it run undecorated without any window decoration. I am running Fluxbox as my WM. If you need any other info, please let me know. Thanks.
    Last edited by mythus (2009-04-25 01:02:23)

    Yes that works! Thanks!
    About the widget; I used Sid's conky script from the conky screenshot as my base, it was the first conky I had tried. Though I only ended up keeping the forecast portion after editing it massively...
    I think it must have been the own_window_hints throwing me off.

  • [Solved] Skype won't run on x86_64

    [jiehan@tpx1c ~]$ sudo pacman -Q skype
    skype 4.1.0.20-4
    [jiehan@tpx1c ~]$ skype
    ERROR: ld.so: object '/usr/share/skype/lib/libQtWebKit.so.4' from LD_PRELOAD cannot be preloaded: ignored.
    /usr/lib32/skype/skype: error while loading shared libraries: libasound.so.2: cannot open shared object file: No such file or directory
    [jiehan@tpx1c ~]$
    Any ideas?  Thanks.
    UPDATE: Reinstalling lib32-alsa-lib and lib32-libxv made Skype to run.  I don't know what made these packages corrupted.
    However, I ran into a new issue, and this is what I get now:
    [jiehan@tpx1c ~]$ skype
    ERROR: ld.so: object '/usr/share/skype/lib/libQtWebKit.so.4' from LD_PRELOAD cannot be preloaded: ignored.
    Inconsistency detected by ld.so: dl-open.c: 684: _dl_open: Assertion `_dl_debug_initialize (0, args.nsid)->r_state == RT_CONSISTENT' failed!
    UPDATE: Reinstalling lib32-alsa-plugins lib32-glib2 lib32-libogg, which seem to be corrupted on my filesystem for some reason, finally solves this issue.  Thank you everyone.
    Last edited by jiehanzheng (2013-03-03 02:44:19)

    theodore wrote:...uninstall it and install it again.
    I did not.  Just tried but it still won't run...
    [root@tpx1c jiehan]# pacman -R skype
    checking dependencies...
    Targets (1): skype-4.1.0.20-4
    Total Removed Size: 35.64 MiB
    Do you want to remove these packages? [Y/n]
    (1/1) removing skype [######################] 100%
    [root@tpx1c jiehan]# pacman -S skype
    resolving dependencies...
    looking for inter-conflicts...
    Targets (1): skype-4.1.0.20-4
    Total Installed Size: 35.64 MiB
    Proceed with installation? [Y/n]
    (1/1) checking package integrity [######################] 100%
    (1/1) loading package files [######################] 100%
    (1/1) checking for file conflicts [######################] 100%
    (1/1) checking available disk space [######################] 100%
    (1/1) installing skype [######################] 100%
    Optional dependencies for skype
    lib32-libcanberra: XDG sound support
    lib32-libpulse: PulseAudio support
    [root@tpx1c jiehan]# skype
    ERROR: ld.so: object '/usr/share/skype/lib/libQtWebKit.so.4' from LD_PRELOAD cannot be preloaded: ignored.
    /usr/lib32/skype/skype: error while loading shared libraries: libasound.so.2: cannot open shared object file: No such file or directory
    [root@tpx1c jiehan]# exit
    [jiehan@tpx1c ~]$ skype
    ERROR: ld.so: object '/usr/share/skype/lib/libQtWebKit.so.4' from LD_PRELOAD cannot be preloaded: ignored.
    /usr/lib32/skype/skype: error while loading shared libraries: libasound.so.2: cannot open shared object file: No such file or directory
    [jiehan@tpx1c ~]$

  • FMS won't run on RHEL 6.2 EC2 instance - _defaultRoot__edge1 experienced 1 failure

    I've got a fresh RHEL 6.2 64-bit instance on EC2. I've turned off the firewall and have  installed an FMS 4.5 dev server. In the logs directory I have admin and master logs (only). The admin logs look ok:
    #Fields: date
    time
    x-pid
    x-status
    x-ctx
    x-comment
    2012-02-29
    09:24:26
    1144
    (i)2581173
    FMS detected IPv6 protocol stack!
    2012-02-29
    09:24:26
    1144
    (i)2581173
    FMS config <NetworkingIPv6 enable=false>
    2012-02-29
    09:24:26
    1144
    (i)2581173
    FMS running in IPv4 protocol stack mode!
    2012-02-29
    09:24:26
    1144
    (i)2581173
    Host: ip-10-204-143-55 IPv4: 10.204.143.55
    2012-02-29
    09:24:26
    1144
    (i)2571011
    Server starting...
    2012-02-29
    09:24:26
    1144
    (i)2631174
    Listener started ( FCSAdminIpcProtocol ) : localhost:11110/v4
    2012-02-29
    09:24:27
    1144
    (i)2631174
    Listener started ( FCSAdminAdaptor ) : 1111/v4
    2012-02-29
    09:24:28
    1144
    (i)2571111
    Server started (./conf/Server.xml).
    The master logs contain these lines, repeating every 5 seconds:
    2012-02-29
    10:43:17
    1076
    (i)2581226
    Edge (2790) is no longer active.
    2012-02-29
    10:43:17
    1076
    (w)2581255
    Edge (2790) _defaultRoot__edge1 experienced 1 failure[s]!
    2012-02-29
    10:43:17
    1076
    (i)2581224
    Edge (2793) started, arguments : -edgeports ":1935,80" -coreports "localhost:19350" -conf "/opt/adobe/fms/conf/Server.xml" -adaptor "_defaultRoot_" -name "_defaultRoot__edge1" -edgename "edge1".
    The FMS install failed, complaining about a missing libcap.so until I installed the libcap.i686 package. The following libcap packages are now installed:
    libcap.i686               
    2.16-5.5.el6    
    @rhui-us-east-1-rhel-server-releases
    libcap.x86_64             
    2.16-5.5.el6    
    @koji-override-0/$releasever
    libcap-ng.x86_64          
    0.6.4-3.el6_0.1 
    @koji-override-0/$releasever
    libpcap.x86_64            
    14:1.0.0-6.20091201git117cb5.el6
    Any help would be most appreciated.
    /Ed.

    I had the same problem on CentOS 6.2 x86_64, albeit not on EC2. It seems that the installer creates a symlink to the i686 libpcap (libcap.so.1 -> /lib/libcap.so.2) and fmsedge won't run with it. Manually removing that symlink and instead linking to the libcap.so.2 in /lib64 solved the problem for me.
    cd /opt/adobe/fms
    rm libcap.so.1
    ln -s /lib64/libcap.so.2 libcap.so.1
    HTH, Jeremy

  • Dv7 Laptop won't run on battery

    Laptop Data&colon;
    [Image Removed]
    Upon unplugging my laptop last night, it simply shut off, and since won't run off of the battery. It seems like the battery isn't connecting to the motherboard, but I ran a test in the support assistant that gives me this:
    [Image Removed]
    Is one of the cells dead, and that is why it isn't working, or could it still be failure to connect to the motherboard?
    I have another battery, but unfortunately not currently with me. 
    The battery also won't charge past 86%, but again, I'm unsure of the cause. I left it out overnight and long held the power this morning to no avail as well.
    Any help is appriciated. Thanks.

    I understand your notebook battery no longer powers the notebook and the battery test has failed.
    Reviewing the battery test, it looks like the battery (when fully charged) is only holding about 35% of the original charge.  This means that the battery life wont' last very long as it will drain much faster.  This is the most likely reason that the battery is no longer functioning is that it has reached the end of its usage.  The battery test requires the battery to interface with the motherboard for it to test the battery, so I don't find the motherboard very likely at this point since the test was able to detect the battery.
    You stated you have another battery to try.  Try using that battery at your convenience to see if it can power up the notebook before purchasing a new battery.  Should you proceed with a new battery, the replacement part number should be listed on the current battery.
    Let me know if this answered your question.
    ↙-----------How do I give Kudos?| How do I mark a post as Solved? ----------------↓

  • Itunes installer won't run in Windows 7

    I am trying to install the latest version of itunes on my new laptop and the installer won't run.  It is a samsung sereis 7 notebook running Windows 7.
    I have downloaded itunes multiple times and tried running as administrator.  I do not get any error, and occasionally a progress bar will flash up on screen for a couple of seconds but then nothing happens.  Other times I don't even get the progress bar, just nothing happens when I try to open the installer.
    Would appreciate any help with this problem.  Its driving me crazy not being able to add new music to my ipod!

    This forum is focused on consumer level products.  For the Designjet you may have better results posting in the HP Designjet forum here.
    Bob Headrick,  HP Expert
    I am not an employee of HP, I am a volunteer posting here on my own time.
    If your problem is solved please click the "Accept as Solution" button ------------V
    If my answer was helpful please click the "Thumbs Up" to say "Thank You"--V

  • HP Pavilion 23t AIO PC won't run Battlefield smoothly

    My father bought me the Pavilion 23t AIO, thinking that it would be a good gaming computer, but upon me testing my game Battlefield 3 with the normal graphics and settings, and the game was incredibly laggy. I changed the settings to the lowest, and the game still won't run completely smoothly, and twice it closed itself out on me. I'm wondering if I need a new graphics card or not, please respond quickly!!
    This question was solved.
    View Solution.

    SniperProffesor, welcome to the forum.
    The good news is, you have very nice computer.  The bad news is, it is not good for gaming.  The video card slot is MXM (One PCI Express MXM slot that supports a PCI Express x16 graphics card (Generation 2 speed).  Here are the specs on it:
    One Mobile PCI Express Module (MXM) socket
    MXM 3.0 version: Type A
    <35W
    It is difficult to find these video cards because they are usually sold as OEM components.  Your best bet would be to shop ebay for one.  I am not certain that this card would even make your gaming experience better.
    Please click the "Thumbs Up+ button" if I have helped you and click "Accept as Solution" if your problem is solved.
    Signature:
    HP TouchPad - 1.2 GHz; 1 GB memory; 32 GB storage; WebOS/CyanogenMod 11(Kit Kat)
    HP 10 Plus; Android-Kit Kat; 1.0 GHz Allwinner A31 ARM Cortex A7 Quad Core Processor ; 2GB RAM Memory Long: 2 GB DDR3L SDRAM (1600MHz); 16GB disable eMMC 16GB v4.51
    HP Omen; i7-4710QH; 8 GB memory; 256 GB San Disk SSD; Win 8.1
    HP Photosmart 7520 AIO
    ++++++++++++++++++
    **Click the Thumbs Up+ to say 'Thanks' and the 'Accept as Solution' if I have solved your problem.**
    Intelligence is God given; Wisdom is the sum of our mistakes!
    I am not an HP employee.

  • Add-on won't run on some clients

    As soon as an add-on users de DI SDK, it crashes at startup on some systems and I don't know why.
    I'm using the DI Basic Operations example that came with the SDK. I build it, and used the SAP B1 SDK setup .NET Wizard to create the installer and licence file. The istallation goes fine, but the addon itself crashes. with a useless "the program has performed an illegal operation and will be shut down" error message (see below)
    I also tried other ways to run the add-on (among others directly from visual studio or from the command line, with the developer licence number as argument) but allways with the same result. At one system all goes well, at the other a crash occurs even before the debugging can start.
    I have no idea what this error message is trying to tell me:
    System.Runtime.InteropServices.COMException (0x80040154): COM object with CLSID {A355004F-AAB4-41D3-BDE0-7EAED1ED5FFF} is either not valid or not registered.
       at Project1.BasicOperations.InitializeCompany()
       at Project1.BasicOperations.BasicOperations_Load(Object eventSender, EventArgs eventArgs)
       at System.Windows.Forms.Form.OnLoad(EventArgs e)
       at System.Windows.Forms.Form.OnCreateControl()
       at System.Windows.Forms.Control.CreateControl(Boolean fIgnoreVisible)
       at System.Windows.Forms.Control.CreateControl()
       at System.Windows.Forms.Control.WmShowWindow(Message& m)
       at System.Windows.Forms.Control.WndProc(Message& m)
       at System.Windows.Forms.ScrollableControl.WndProc(Message& m)
       at System.Windows.Forms.ContainerControl.WndProc(Message& m)
       at System.Windows.Forms.Form.WmShowWindow(Message& m)
       at System.Windows.Forms.Form.WndProc(Message& m)
       at System.Windows.Forms.ControlNativeWindow.OnMessage(Message& m)
       at System.Windows.Forms.ControlNativeWindow.WndProc(Message& m)
       at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
    Most of the time however, I get a much less helpfull error saying there was some unidentified illegal operation.
    Something that is possibly related is a problem with the references. On a PC where the add-on crashes I don't have the SAP DI as reference in the .NET and COM tabs, only the SAP UI. When I open an example the DI reference is reporting an error (not found) , but when I add the reference as a file, all is well. (The project now compiles with no errors or warnings, it still crashes when I start it.
    The problem already occured when only SBO was installed (which should be sufficient to run the add-on? You don't need to have the SDK installed I presume). I installed the SDK and later even Visual Studio, but this didn't help.
    I've reinstalled SBO several times (I even deleted the sbo program files directory before installing SBO again) but this didn't change anything.
    (I'm using 2004a)
    Does anyone know what could cause this problem?

    I know that, but that didn't help.
    Is there any way to find out which versions of the DI API a SBO client is currently using?
    We've re-installed the clients and DI API using the shared folder on the server, but that didn't help. (maybe some old dll was locked and couldn't be removed (without any notice of that happening) and is still being used?)
    One system indeed didn't have the DI API installed and the problem was solved a bit (my own plug-in now works fine, but the "DI basic operations" example of the SDK crashes when connecting to a company database.)
    We've now got 3 machines running my add-on without any problems (the server and 2 notebooks) and 1 notebook who won't run my add-on at all.
    The DI basic operations Example of the SDK won't run on any of the notebooks, only on the server.
    On one notebook it crashes when I click "choose company DB" (which should give me a list of available companies) on the other notebook it crashes when I try to connect to a (any) specific company database and on the third notebook it gives an empty list and won't connect to anything (but doesn't crahs)
    this is all 100% reproducable.
    All machines run the SBO client and UI add-ons perfectly, only the DI seems to cause problems.
    another weird problem that might be related, is that I need to compile my add-on as "debug". When I compile it as "release", it won't run on any of the notebooks, only on the server.

  • FCE 2.0.3 won't run on PowerPC G5 Quad

    Hello,
    I know there are a few threads about this subject, but my copy of FCE 2.0.3 won't run on G5 Quad. I get the same error messages (AGP card needed, G4 needed) and by editing the info.plist file I am able to get rid of the 'AGP card needed' message, but the 'G4 needed' is very stubborn. Changing G4 to G5 in the info.plist file does not solve this problem. So the suggested solutions don't seem to work now.
    Has someone else (maybe Apple, through an update...) a solution?
    Peter

    Forgive me if I am wrong, but I suspect some people may be saving the .plist incorrectly. I don't know whether you are but just in case I have copied this from one of the other threads. You of course will have to alter the "G4" as well:-
    You just open the .plist with TextEdit etc.
    Then do what is detailed below and nothing more:-
    When you have changed the letters AGP to PCI you simply close the window by clicking on the red button (top left).
    A drop-down window will appear asking if you want to save the changes.
    Click "Save" - the window disappears and the job is done.
    Ian.
    PS. I have just remembered that someone in those threads actually said that editing .plists in OS 10.4 was difficult or even impossible. I don't know how true that is . Good Luck!

  • Illustrator won't run, instead AAM tries to run

    Hi all,
    When I try to run an application form CS6, e.g. Illustrator or InDesign, they won't. Instead the Adobe Application Manager tries to run, but hangs/freezes. I need to force-quit AAM, but then again, none of the CS apps won't run/start, and AAM tries to run again, and freezes and so on and so on.
    How can I get my apps to run again (and get rid of AAM trying to run).

    Solved it !!!
    Restarted my iMac, and then reinstalled AAM.
    Everything is working again.
    (But still don't know why it went wrong in the first place, though)

  • Audition CS6 won't run anymore

    My version of CS6 used to run perfectly until I used Malwarebytes, which removed amtlib.dll
    Now it won't run at all, even though I've put amtlib.dll back. I keep on getting the 0xc000007b error, and I can't uninstall the program at all. What do I do to fix this problem? It's extremely frustrating. Nothing I have done has fixed this, and I've tried many times to remove it, such as command prompt, the windows uninstaller (it doesn't show up), and multiple programs such as ccleaner.

    If Ryclark's suggestion still doesn't work I would strongly recommend finding and downloading the free version of Revo Uninstaller, from Download Revo Uninstaller Freeware - Free and Full Download - Uninstall software, remove programs, solve uninstall probl… The Pro version can be used for 30 days as a trial; speaking personally I think it's well worth the money!  The Portable version is especially useful to keep on a pen drive; you can then use it on any computer.
    I've needed to use it on more than one occasion when faced with similar problems (a program that is now "corrupted" but cannot be uninstalled by any standard method).  If Audition is not listed as installed when you run Revo, use the Forced Uninstall mode and simply point it to the folder where AA currently is.
    One word of caution: Revo Pro creates a full back of your registry etc., before beginning the uninstall routine.  I don't think the free version does, so do create a System restore point before running it.
    HTH
    Jeff

  • Mail won't run - can I rebuild without running Mail?

    I was installing the latest update to Mail Tags in Mail and it crashed in the process of the update. Now mail won't run - it just hangs. I reinstalled Mail and it's still doing the same thing so it must be the mail data file (right?). Can I rebuild the data file without running mail? What to do?

    Ok, I should have tried the easy solutions first. I deleted the preferences com.apple.mail.plist in my user's Library folder and that solved the problem. Of course your Library folder is hidden in Lion so you must reveal the folder first which can be done like this: hit command+shift+G from the finder and type ~/library/ You will ge temporary access to the Library folder.
    Problem solved for me.

Maybe you are looking for

  • Who has a find Open Path plug-in for CS4 Illustrator on WinXP and a close path also?

    Can anyone lead me to a plug-ins for finding open paths and closing them in CS4 on WinXP? Thanks

  • Adobe digital edition 2.0 stopped working.

    Last night i read a book on ADE 2.0 and in the morning when i tried opening it , ADE crashed and it says ADE not working. I tried repairing it and re installing it but still the problem persists. I created a new user account on my win 8.1 , its worki

  • EDI - Porcess Code for Po create

    Hi I have the need to create PO (stock transport orders) in a client from a idoc that pas been posted. Whats the process code i set in we20 inbound to create a purchase order. Thanks Barry

  • Can't use paint brush tool at all

    i just installed a trial version of adobe photoshop cs4 and i can't use the paint brush tool at all - when i try to use it nothing happens i saw someone else with the same problem on this website http://forums.techguy.org/digital-photography-imaging/

  • Disabling oracle cache

    Hi, I am a graduate student in Computer Science and need to do some experiments for my thesis. I am not very familiar with oracle. I am using oracle and have implemented a cache to store some of the frequently used data items in my application. I am