[Solved] PKGBUILD Update for powerpanel

This is the third of five packages I'm looking at, per the original post.
The third package is aur/powerpanel (1.2.3-3). This one was a little curious; it claimed to install a binary under /usr/sbin, but the end package would have no non-'meta' files in it at all (and thus would install nothing). I believe this is due to the use of $startdir in the original PKGBUILD, though I can't be certain.
Flagged as before, but no inspection of the source as this fetches a pre-built binary from the vendor. No issues so far at my end (and hopefully none for anyone else). Of course, this means that once again, the only affected file was the PKGBUILD, for which I include updates below.
PKGBUILD.diff (to make a new PKGBUILD) -- In addition to correcting the install path, this fixes an error and several warnings noted by namcap, and also several warnings by makepkg.
Edited 09 June 2013 per Scimmia [#1285083]
--- PKGBUILD 2013-02-14 19:26:52.000000000 +1100
+++ PKGBUILD 2013-06-09 14:30:24.034932202 +1000
@@ -2,68 +2,70 @@
pkgname=powerpanel
pkgver=1.2.3
pkgrel=3
-pkgdesc="PowerPanel for Linux software can be used with most CyberPower UPS products."
-arch=("x86_64" "i686")
-url="http://www.cyberpowersystems.com"
+pkgdesc="This Linux package can be used with most CyberPower UPS products."
+arch=('x86_64' 'i686')
+url="http://www.cyberpowersystems.com/"
license=("custom:CyberPower")
-depends=('libusb')
-source=(http://www.cyberpowersystems.com/software/powerpanel_123_x86_64.tar.gz pwrstatd.service)
+depends=('bash')
+source=(pwrstatd.service)
backup=(etc/powerpanel/pwrstatd-{powerfail,lowbatt,email}.sh
etc/pwrstatd.conf)
if [ $CARCH = 'x86_64' ]; then
- md5sums=('0226b17e9470b93cd1e4fd2f149c5d05'
- '1d92c092af4bbb55add35d30c6b37252')
+source+=("http://www.cyberpowersystems.com/software/powerpanel_123_x86_64.tar.gz")
+md5sums=('1d92c092af4bbb55add35d30c6b37252'
+ '0226b17e9470b93cd1e4fd2f149c5d05')
fi
if [ $CARCH = 'i686' ]; then
-source=(http://www.cyberpowersystems.com/software/powerpanel_123_i386.tar.gz)
- md5sums=('79d1b60f5146b5286c786c93b90e6c87'
- '1d92c092af4bbb55add35d30c6b37252')
+source+=("http://www.cyberpowersystems.com/software/powerpanel_123_i386.tar.gz")
+md5sums=('1d92c092af4bbb55add35d30c6b37252'
+ '79d1b60f5146b5286c786c93b90e6c87')
fi
-build() {
- cd $startdir/src/$pkgname-$pkgver-0
-# copy files
+package() {
+
+# File install operations.
# PowerPanel for Linux client program
-install -Dm755 bin/pwrstat $startdir/pkg/usr/bin/pwrstat
+install -Dm755 "$srcdir/$pkgname-$pkgver-0/bin/pwrstat" "$pkgdir/usr/bin/pwrstat"
# PowerPanel for Linux daemon program
-install -Dm755 bin/pwrstatd $startdir/pkg/usr/sbin/pwrstatd
+install -Dm755 "$srcdir/$pkgname-$pkgver-0/bin/pwrstatd" "$pkgdir/usr/bin/pwrstatd"
# PowerPanel for Linux daemon configuration
-install -Dm600 conf/pwrstatd.conf $startdir/pkg/etc/pwrstatd.conf
-sed -e 's#/etc#/etc/powerpanel#' -i $startdir/pkg/etc/pwrstatd.conf
+install -Dm644 "$srcdir/$pkgname-$pkgver-0/conf/pwrstatd.conf" "$pkgdir/etc/pwrstatd.conf"
+sed -e 's#/etc#/etc/powerpanel#' -i "$pkgdir/etc/pwrstatd.conf"
# Script command for event of power failure
-install -Dm755 script/pwrstatd-powerfail.sh $startdir/pkg/etc/powerpanel/pwrstatd-powerfail.sh
+install -Dm755 "$srcdir/$pkgname-$pkgver-0/script/pwrstatd-powerfail.sh" "$pkgdir/etc/powerpanel/pwrstatd-powerfail.sh"
# Script command for event of battery low
-install -Dm755 script/pwrstatd-lowbatt.sh $startdir/pkg/etc/powerpanel/pwrstatd-lowbatt.sh
+install -Dm755 "$srcdir/$pkgname-$pkgver-0/script/pwrstatd-lowbatt.sh" "$pkgdir/etc/powerpanel/pwrstatd-lowbatt.sh"
# Script command for e-mail notification
-install -Dm755 script/pwrstatd-email.sh $startdir/pkg/etc/powerpanel/pwrstatd-email.sh
+install -Dm755 "$srcdir/$pkgname-$pkgver-0/script/pwrstatd-email.sh" "$pkgdir/etc/powerpanel/pwrstatd-email.sh"
# Script command for Daemon startup control
-install -Dm755 script/arch_pwrstatd $startdir/pkg/etc/rc.d/pwrstatd
+install -Dm755 "$srcdir/$pkgname-$pkgver-0/script/arch_pwrstatd" "$pkgdir/etc/rc.d/pwrstatd"
# Systemd unit
-install -Dm644 ../pwrstatd.service $startdir/pkg/usr/lib/systemd/system/pwrstatd.service
+install -Dm644 pwrstatd.service "$pkgdir/usr/lib/systemd/system/pwrstatd.service"
# PowerPanel for Linux client man-page
-install -Dm644 doc/pwrstat.8 $startdir/pkg/usr/share/man/man8/pwrstat.8
+install -Dm644 "$srcdir/$pkgname-$pkgver-0/doc/pwrstat.8" "$pkgdir/usr/share/man/man8/pwrstat.8"
# PowerPanel for Linux daemon man-page
-install -Dm644 doc/pwrstatd.8 $startdir/pkg/usr/share/man/man8/pwrstatd.8
+install -Dm644 "$srcdir/$pkgname-$pkgver-0/doc/pwrstatd.8" "$pkgdir/usr/share/man/man8/pwrstatd.8"
-# compress the man page file
-gzip -9 $startdir/pkg/usr/share/man/man8/pwrstat.8
-gzip -9 $startdir/pkg/usr/share/man/man8/pwrstatd.8
+# PowerPanel license file
+install -Dm644 "$srcdir/$pkgname-$pkgver-0/doc/LICENSE" "$pkgdir/usr/share/licenses/powerpanel/LICENSE"
+# PowerPanel additional documentation
+install -Dm644 "$srcdir/$pkgname-$pkgver-0/doc/README" "$pkgdir/usr/share/doc/powerpanel/README"
+install -Dm644 "$srcdir/$pkgname-$pkgver-0/doc/deploy-guide" "$pkgdir/usr/share/doc/powerpanel/deploy-guide"
+install -Dm644 "$srcdir/$pkgname-$pkgver-0/doc/install-guide" "$pkgdir/usr/share/doc/powerpanel/install-guide"
+install -Dm644 "$srcdir/$pkgname-$pkgver-0/doc/user-manual" "$pkgdir/usr/share/doc/powerpanel/user-manual"
+}
A fair number of changes, but mostly straightforwards, and I did otherwise try and make as few changes as possible to the original PKGBUILD. Again, any (constructive) feedback is welcome. I will of course add a comment to the package page in AUR noting this topic.
Last edited by aexoxea (2013-06-10 04:42:08)

Scimmia wrote:
"md5sums+=" works, too.
I would try to include $pkgver in the source array, something like ${pkgver//./} to get rid of the dots. That way you only have to update the pkgver at the top on an update.
[#1285717]
Good point about the md5sums= and also about using variables in the source= (which I note a number of packages indeed do).
As it is, the maintainer has yesterday updated the PKGBUILD (using only some of the changes from the above), so I'm going to mark this thread as 'solved', but will take note of everything above for future PKGBUILDs that I write or modify (I'm sure this one won't be the last).

Similar Messages

  • [Solved] PKGBUILD Update for ufs-tools

    This is the second of five packages I'm looking at, per the original post.
    This time, the package is aur/ufs-tools (0.1-1), which installs a binary under /sbin. Flagged as before, no apparent hard-coded paths in the source, and it seems to be operable from /usr/bin, so once again, only a build issue. The only affected file here is the PKGBUILD, for which I include updates below.
    PKGBUILD.diff (to make a new PKGBUILD) -- In addition to correcting the install path, this fixes an error and several warnings noted by namcap, and also a warning by makepkg about the lack of a package() function.
    Edited 09 June 2013 per Scimmia [#1285088]
    --- PKGBUILD 2011-07-12 01:10:50.000000000 +1000
    +++ PKGBUILD 2013-06-09 13:48:15.088487843 +1000
    @@ -4,13 +4,11 @@
    pkgver=0.1
    pkgrel=1
    pkgdesc="Utility for creating UFS 1 & 2 filesystems on Linux"
    -arch=(i686 x86_64)
    -# http://downloads.sourceforge.net/project/ufs-linux/ufs-tools/0.1/ufs-tools-0.1.tar.bz2?r=http%3A%2F%2Fsourceforge.net%2Fprojects%2Fufs-linux%2F&ts=1309898303&use_mirror=voxel
    +arch=('i686' 'x86_64')
    url="http://ufs-linux.sourceforge.net/"
    license=('GPL')
    -depends=(gcc libbsd)
    -#install=
    -source=(http://downloads.sourceforge.net/project/ufs-linux/ufs-tools/0.1/$pkgname-$pkgver.tar.bz2
    +depends=('libbsd')
    +source=("http://downloads.sourceforge.net/project/ufs-linux/ufs-tools/0.1/$pkgname-$pkgver.tar.bz2"
    ufs-tools.patch)
    md5sums=('c4a78473c8b5267b2799b53c878edaad'
    @@ -18,15 +16,19 @@
    build() {
    cd "$srcdir/$pkgname-$pkgver"
    +
    patch -p1 < ../ufs-tools.patch
    +
    cd libufs
    - make || return 1
    + make
    +
    cd ..
    - make # DESTDIR="$pkgdir/" install
    - mkdir -p $pkgdir/sbin
    - mkdir -p $pkgdir/usr/lib
    - cp $srcdir/$pkgname-$pkgver/libufs/libufs.so.1.0 $pkgdir/usr/lib/.
    - ln -s $pkgdir/usr/lib/libufs.so.1.0 $pkgdir/usr/lib/libufs.so.1
    - cp $srcdir/$pkgname-$pkgver/mkufs $pkgdir/sbin/.
    + make
    +}
    +
    +package() {
    + install -D "$srcdir/$pkgname-$pkgver/libufs/libufs.so.1.0" "$pkgdir/usr/lib/libufs.so.1.0"
    + ln -rs "$pkgdir/usr/lib/libufs.so.1.0" "$pkgdir/usr/lib/libufs.so.1"
    +
    + install -D "$srcdir/$pkgname-$pkgver/mkufs" "$pkgdir/usr/bin/mkufs"
    If you wanted a 'mkfs.ufs' similar to the other tools, you could also include this line in the new PKGBUILD as the last instruction before the closing brace of package(); I could not determine for certain if this would conflict with a file in any other package, but I do not believe it should (unless there is a different package providing UFS tools). I didn't include it above however to avoid the risk, and also as it was not in the original PKGBUILD:
    ln -rs "$pkgdir/usr/bin/mkufs" "$pkgdir/usr/bin/mkfs.ufs"
    Any (constructive) feedback is welcome; I tried to make as few changes as possible to the original PKGBUILD, so apologies if I missed correcting/adjusting other things that should have been changed as well. I will of course add a comment to the package page in AUR noting this topic.
    Last edited by aexoxea (2015-05-13 13:36:21)

    Scimmia wrote:
    Get rid of "|| return 1", it's no longer needed.
    Don't just cp a file. Use install if it's individual files or cp -a if it's an entire dir structure. Install will also make the dest dirs for you with the -D option, so get rid of the mkdir commands as well.
    Quote all paths which include variables.
    [#1285088]
    Changes made (and now reflected in the OP), and these points noted for future work. The feedback is much appreciated .

  • [SOLVED] PKGBUILD equivalents for other distros

    I'd like to package some of my tools for other distros - mainly .deb and .rpm based for now.  Ideally, I'd like to not have to build full packages for each distro, but instead host build scripts or equivalents of PKGBUILDs for other distros.  As I am not nearly as well versed in other distros as I am with arch, I'm not sure how to find the needed information to accomplish this.
    To take .deb as an example, the pacman rosetta page suggests debuild is the equivalent tool to makepkg.  However, the debuild man page indicates that debuild can simply be run within the source tree to build a package.  Certainly this can't be the case, unless there are distro-specific files within that source tree that debuild finds and uses.  That man page does not indicate what these files are and how they are written.
    I have found documentation for creating full binary packages for debian-based distros, but is there an equivalent to a PKGBUILD?  I know for Gentoo, ebuilds are well documented and should be quite doable.  But frankly I'm pretty sure most gentoo users wouldn't need my help with those.  I'm currently primarily targeting .deb as many novice linux users that I'd like to make a couple of my tools available to seem to use ubuntoo.
    I suspect I may just be missing the proper documentation and/or am not using the right search terms.  Any nudges in the right direction would be appreciated.
    (edit: marked 'solved' as I now have the information I needed to get started working on this - but more input can always be handy.)
    Last edited by Trilby (2014-01-08 20:34:26)

    I recently discovered Debian's `checkinstall` which is very close to what I was looking for.  One can easily create a script that will download and install a "non-debianized" source package as a .deb that can be managed by dpkg/apt-get.
    Allegedly it can also create rpm packages, but I'm not going to worry about trying that out for a while.
    A simple example of a script to allow debian/*buntu users to install one of my packages can be seen here.  There is an executable script called `makedeb` - guess what it does.  There is also a package-specific file called DEBBUILD - guess what that's for .  With just those two files, a debian user could run the script which would get the needed info from the DEBUILD to install the needed dependencies, download and build the source, install under the watch of checkinstall to a temp directory, have checkinstall build a .deb package, remove the builddeps (and optionally all deps installed during the build), and leave them with a *.deb file ready for dpkg.
    This instance of makedeb was intentionally made generic so it could work for other packages, however it is also *very* simple and so will not work for all other packages.  A DEBBUILD is nearly identical to a PKGBUILD, except the dependency names need to be converted to the debian deps (and there may be many more deps needed as you cannot assume our base/base-devel components are there ... and split -dev packages suck).
    Making this DEBBUILD + makedeb made me wonder how hard it would be to convert our own makepkg over to work on top of apt-get/dpkg.  I've installed debian (crunchbang) on one of my systems to experiment with this.  I've realized there may not be much to it really.  I've just completed my revision to the actual makepkg script (and makepkg.conf) to make a full featured makedeb and makedeb.conf.  It is not yet tested - and once I test it I may find it is not nearly as complete as I had hoped.  But the goal is to allow PKGBUILD -> DEBBUILD conversions to be quite easy (just change the deps).
    I may post my full featured makedeb in "community contributions" if/when it passes a few basic tests.  It will not run on arch, but it is suited for archers who need to make debs.  It may eventually run on arch (there are dpkg is in the AUR, and so is checkinstall, though it is very broken ATM), but this is not a goal of mine.
    Last edited by Trilby (2014-05-30 17:37:40)

  • My daughter has 2 websites she can not fully access because the iPad won't download updates for Adobe. What is Apple doing to solve this problem?

    My daughter has 2 websites she can not fully access because the iPad won't download updates for Adobe. What is Apple doing to solve this problem?

    Flash has been used for more than just displaying videos. The Vote choice your daughter found is one of those flash type sites that will not display on iOS devices. There are now over 100 million iPads, and who knows how many more iPhones out there. Developers who want their content to display on all these devices will have to move away from the old Flash technology.
    There were some version of Flash that ran on other brands of tablets. But Adobe has stopped all development of Flash for all mobile devices. As time goes on and mobile operating systems evolve the no Apple devices will lose their ability to run Flash too. Web developers need to move on to cleaner, more efficient types of programming.

  • [SOLVED] Unrelated Issue - AUR PKGBUILD updated, but not 'pkg'.tar.gz

    Hi all,
    I noticed that qbzr had become unmaintained and in fact wouldn't install via the AUR PKGBUILD file as the source download link had become obsolete.
    I took ownership of the package, then downloaded, updated, targz'd and submitted the new archive. However, it still doesn't seem to be quite right.
    If I download the PKGBUILD , I can now makepkg and then pacman -U without trouble. (v0.18)
    However, using yaourt - yaourt gets the version info etc from the PKGBUILD file I think, as it displays the intended version correctly (0.18). However it then downloads qbzr.tzr.gz, within which is the PKGBUILD file of version (0.16).
    I feel I must have missed something, but I can't figure out how when I submitted qbzr.tar.gz AUR was able to correctly extract the PKGBUILD file for display but not provide the correct qbzr.tar.gz
    Perhaps there is a lag in file propagation that I have been previously unaware of?
    Cheers
    Last edited by thread (2010-02-08 03:28:35)

    thread wrote:However it then downloads qbzr.tzr.gz, within which is the PKGBUILD file of version (0.16).
    there's nothing wrong with the tarball, so i'm not sure why you think it's not an issue/bug/problem/etc with yaourt..
    $ wget http://aur.archlinux.org/packages/qbzr/qbzr.tar.gz
    $ bsdtar xf qbzr.tar.gz
    $ grep ^pkgver= qbzr/PKGBUILD
    pkgver=0.18
    Last edited by tdy (2010-02-05 05:04:08)

  • (solved)-Windows update cannot currently check for updates, because the service is not running. You may need to restart your computer

    (solved)-Windows update cannot currently check for updates, because the service is not running. You may need to restart your computer
    Hetti Arachchige V Aravinda | Network Administrator (B.Sc, MCP, MCTS, MCSA, MCSE, MCITP, CCNA, CEH, MBCS)| http://www.windowstechinfo.com |

    Hi,
    Glad to see your problem resolved, Hope your experience is helpful with others.
    Roger Lu
    TechNet Community Support

  • Hi all, I upgraded my MBP to Lion , but on the screen where i need to type my password, click  on my photo and it does not appear the place for me to type my password and it stay stuck there. Can anyone solve this problem for me?

    Hi all, I upgraded my MBP to Lion , but on the screen where i need to type my password, click  on my photo and it does not appear the place for me to type my password and it stay stuck there. Can anyone solve this problem for me?

    Reboot the machine holding Command and r keys down, you'll boot into Lion Recovery Partition
    In there will be Disk Utility, use that to select your Lion OS X Partition and Repair Permissions.
    After that is done reboot the machine and see if you can log in.
    If not repeat the above steps to get into Lion Recovery, get online and reinstall Lion again, it will overwrite the installed version and hopefully after that it wil work.
    Reboot and try again.
    If not follow my steps to create a Snow Leopard Data Recovery drive, then option boot from it and grab a copy of your files off the machine.
    Then reinstall all your programs onto the external drive like setting up a new machine, then use Disk Utility to erase the entire internal boot drive (select the drive media on the far left, not the partiton slightly indented) format Option: GUID , 1 partition OS X Extended and then use Carbon Copy Cloner to clone the external to the newly formatted internal drive. Once that is finished reboot and disconnect the external drive.
    Once you go that, boot into Snow Leopard and update to 10.6.8, use the AppStore and option click on Purchases and download Lion again and install.
    Lots of work, but there is no Lion disks.
    https://discussions.apple.com/message/16276201#16276201

  • BIOS Update for HP Pavilion dv6t-7000 CTO

    I was just looking at the updates for my laptop and saw two BIOS updates here.  I was wondering which one actually applies to my particlular machine.   As one can see, one is a few months more recent than the other.  Does this mean that it has the fixes that the older one already employs?   If so, why list both when only the newst one is relevant?  
    Looking further into this, I took a look at the revision history (Previous Versions) for both and  they each list themselves as "Current".  One lists as  "F.29 Current 10-2013"  and the other "F.24 Current 02-2013".  So, which one is actually current? 
    Can anyone shed some light on this?   I can post more specific info about my machine upon request if that would help.
    This question was solved.
    View Solution.

    The one with the later date is more current. This is customary on computer manufacturer support websites. They will usually keep the last couple of versions up there with the latest one. Toshiba is particularly bad about never removing old versions of drivers and BIOS. And BIOS updates are cumulative. You can skip over to the latest one and all the updates in all the interim versions will be included. The files are labeled clearly as to their date of issue and that they only apply to models with Intel processors so it should be apparent you need to install the latest one and only of your machine has an Intel processor. If you need anything else let us know. 

  • I can't get update iWork because I updated keynote first so it says I have a newer version of keynote and quits the update for the rest

    I got a new mac with lion on it and I transfered all my stuff from the old mac to the new one.  When I went to use iwork the programs did not work anylonger (I do own the disc and tried reinstalling but no good).  I found the update for Keynote on the apple site and that solved the problem for keynote.  Then I saw the update for the whole iwork program and tried to do that as well but it won't let me run it because it says I have a newer version of Keynote already installed.  How do I get the update to work or how do I get the same type of update for numbers and pages individually?  Thanks!

    Try the following user tip with that one:
    Empty/corrupt iTunes library after upgrade/crash

  • I switched on my PC and there was an update for realplayer. Since then firefox will not load. It is running according to Task Manager. I've downloaded a another copy of the programme using IE but whilst it loaded as a programme, does not open a window.

    I switched on my PC and there was an update for realplayer. Since then firefox will not open as a window. It is running according to Task Manager. I've downloaded a another copy of the programme using IE but whilst it loaded as a programme, does not open a window.

    Hi again,
    Helps if I give the correct link ! <br/>The press shift button appears to still work, but the option to start in safe mode from the programs listing of a standard install I do not think exists anymore.
    Safe mode will start from a command line, (or a shortcut) and in some circumstances you may need to enter the full path name on a command or shortcut detailed instructions are at http://kb.mozillazine.org/Safe_mode
    Remember (at least at this stage) do not make changes when you get the options list, just click on the continue button.
    If you think that RealPlayer is causing the problem you could uninstall that for now.
    Firefox recent versions are 3.6 4.0 (and 5.0 in beta). There is some debate as to whether creating new profiles or re-installing Firefox is the simplest method of troubleshooting and solving some of these problems, personally I use multiple profiles and multiple versions of Firefox, and tend to forget the required procedures are less than straightforward. For now at least try [[safe mode]] again.
    * see also Instructions for [[installing a previous version of firefox]]

  • BlackBerry 10 OS update for Verizon

    When are we going to get the 10.0.10 update for Verizon?

    adrenaline_junkie_ff wrote:
    What OS version will I clue contact groups? Anyone know?
    adrenaline_junkie_ff, say what?
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Driver update for Win 7 USB issue on nVidia chipset systems now available

    This patch is needed for the TouchSmart 600 AIO Desktop series if you haven't installed it.
    http://h30434.www3.hp.com/t5/Lockups-Freezes-Hangs/Driver-update-for-Win7-USB-issue-on-nVidia-chipse...

    The update is not part of the desktop Win7 update disc from MS or HP  - Microsoft has not yet integrated it into Win7, and it is not yet available on Windows Update (it is likely to hit there sometime in January).   It was available too late to get it out on HP Update before the holiday break.  I don't believe there have been any rolls to the Win7 upgrade disks.   I do recommend (while still on Vista) running HP Update and installing all applicable updates  - PRIOR to doing the Win7 upgrade.  Also - I'd double check the drivers page for your system for any Vista updates as well,  best to do any driver/BIOS/Video BIOS updates prior to the Win7 upgrade process.  I know that some of them were created before Windows 7 was out - and may not want to install if it sees the newer OS.
    As to the fix - this could manifest itself in many ways - but essentially - this resolves system flakyness with USB devices attached .  Some internal devices (card readers, touchscreens, some Wireless LAN interfaces) connect via USB - so they could be affected, even if you haven't hooked up anything to your system externally.
    Not sure just what problems you were experiencing, so can't say this was the cause (and will be the fix) - but if it applies to your system - I'd definitely give it a shot.    I checked a couple of systems that had this update - I see it now on the software drivers and update page for them, so it looks like it rolled out OK.
    Happy Holidays...
    -DM (an HP employee, but the time and comments here are my own, not my employers)
    -DM (HP Retiree)
    NOTE: If this helps you or solved your problem - please say thanks by clicking the white kudos star on the left.
    If you think this would also help others, please mark 'Accept as Solution' to help them find it easier.

  • Problem with HP Software Update for Macbook

    There's a recent update for HP Software for Macs called update 2.12, but I think it has a bug because now my scanner isn't working. I have the 4-in-1 HP Laserjet 1536, and now I can't scan documents as pdfs in the document feeder. The flatbed will only let me scan pages as individual .jpeg files, but I have a  multi-page project that need to be in one pdf. The HP support website is not helpful at all- if you ask a question the only response you get is to call HP, where you can probably wait about an hour on the phone before getting no help. Anyone else have this issue or knows how to solve it?
    - Thanks

    Hi Hannah,
    Try removing the printer via the "-" button in the printer list, then re-adding the printer with the "+" button.
    It should prompt a reinstall of the software required.
    I work with HP.

  • Can you install the update for Linksys EasyLink Advisor over the current version?

    I was notified of a new update for Lela, Lela-3-11.9139.94.  I saved the download to a file.
    My question is as follows: Before installing the new version, do I need to uninstall the current version 3.0?
    I just got the router running properly and do not want to mess anything up. 
    Solved!
    Go to Solution.

    I  had v 2.0 working fine...  I downloade the v3.0   "lela-3.11.9139.94.exe"    and when the install is at the "installing JRE   it hangs.. and never ends.  I am using XP professional with latest fixes.. I tried to clear the reistry, Tried install 5 times, Allway tops at JRE..  Also installed latest SUN JRE..  I have no idea what i wrong..  Must be a bug in the install..
    Any suggestion?
    Reginaldo
    Message Edited by rbarosa on 06-29-2009 06:28 PM
    Message Edited by rbarosa on 06-29-2009 06:28 PM

  • [SOLVED] Since updating to Java 1.6.0_33 on my MacBook running OSX 10.6.8, websites say Java not installed in Firefox, but works in Chrome

    I work for User Testing, which uses a Java-based screen recorder to make videos of people using commercial websites and offering spoken feedback on the site. Since installing the Java 1.6.0_33 update for Snow Leopard on my MacBook, the User Testing screen recorder does not recognize that Java is installed, and won't work.
    If I switch to Chrome, all works smoothly. I have the latest version of Firefox, and have installed the latest updates. I have opened Java Preferences in my Utilities, and made sure that the checkbox "Enable applet plug-in and Web Start applications" is checked. I have cleared the cache and cookies in Firefox. The problem still persists.
    User Testing says no other Mac users have reported the problem, and so they cannot help me. I rely on a Firefox add-on that is not available for Chrome to notify me of new User Testing jobs (which are normally claimed in seconds), so it is not practical for me to simply switch to Chrome or another browser.
    Interestingly, when checking my plugins in order to fill out the information required below in this help request, I was sent to a Firefox page that says "For your safety, Firefox has disabled your outdated version of Java. Please upgrade to the latest version."
    When I click the link, it says that Apple supplies its own version of Java, which of course I have already installed. Guess this is the root of the problem, but how do I fix it?
    EDITED TO ADD SOLUTION:
    After even more Googling, I eventually stumbled on the solution. In the Firefox menu, I chose Help>Troubleshooting Information, and clicked "Show in Finder" under Application Basics. I then quit Firefox, clicked on the Profile folder, deleted the file "pluginreg.dat", and restarted Firefox. Java now shows up among my plugins, and is enabled by default. The failure of pluginreg.dat to update automatically was supposed to be an old Firefox problem that has been solved, but apparently that is not always the case.
    Thank you to everyone who answered.

    I read somwhere that firefox disables certain versions of java because it might give control of your computer to other malicious websites
    I think you have to go to the java website and down load the version you need and enable it in firefox's prefrences
    Sorry I may be a veteran in using firefox, but I know very little since I hardly had problems with mozilla untill just very recently hope this helps

Maybe you are looking for