Timing issues with systemd units auto-updating rEFInd on ESP

Aim: I wanted to use systemd to auto-update the following files and directories in EFI/arch_refind/:
drivers_x64/ext4_x64.efi fonts/ icons/ refind_x64.efi
Initially, I tried to do this with a single .path and .service pair but although it worked initially, I had problems with things respawning too quickly. As a result I ended up with nothingness on the ESP. I figured that the problem might be that because I had different changed-path conditions in the .path file, the .service file was getting run multiple times as pacman updated the refind package. In an attempt to address this, I split the files into four pairs with each one handling a specific change.
For updating the .efi itself:
# /etc/systemd/system/refind-update-efi.path
[Unit]
Description=Copy rEFInd EFI to UEFISYS Partition
[Path]
PathChanged=/usr/lib/refind/refind_x64.efi
[Install]
WantedBy=multi-user.target
and:
# /etc/systemd/system/refind-update-efi.service
[Unit]
Description=Copy rEFInd EFI to UEFISYS Partition
[Service]
Type=oneshot
ExecStart=/usr/bin/cp -f /usr/lib/refind/refind_x64.efi /boot/efi/EFI/arch_refind/refind_x64.efi
For updating the file system driver:
# /etc/systemd/system/refind-update-ext4.path
[Unit]
Description=Copy rEFInd ext4 driver to UEFISYS Partition
[Path]
PathChanged=/usr/lib/refind/drivers_x64/ext4_x64.efi
[Install]
WantedBy=multi-user.target
and:
# /etc/systemd/system/refind-update-ext4.service
[Unit]
Description=Copy rEFInd ext4 driver to UEFISYS Partition
[Service]
Type=oneshot
ExecStart=/usr/bin/mkdir -p /boot/efi/EFI/arch_refind/drivers_x64
ExecStart=/usr/bin/cp -f /usr/lib/refind/drivers_x64/ext4_x64.efi /boot/efi/EFI/arch_refind/drivers_x64/ext4_x64.efi
For the fonts directory:
# /etc/systemd/system/refind-update-fonts.path
[Unit]
Description=Copy rEFInd fonts to UEFISYS Partition
[Path]
PathChanged=/usr/share/refind/fonts
[Install]
WantedBy=multi-user.target
and:
# /etc/systemd/system/refind-update-fonts.service
[Unit]
Description=Copy rEFInd fonts to UEFISYS Partition
[Service]
Type=oneshot
ExecStart=/usr/bin/rm -rf /boot/efi/EFI/arch_refind/fonts
ExecStart=/usr/bin/cp -pr /usr/share/refind/fonts /boot/efi/EFI/arch_refind/fonts
For the icons directory:
# /etc/systemd/system/refind-update-icons.path
[Unit]
Description=Copy rEFInd icons to UEFISYS Partition
[Path]
PathChanged=/usr/share/refind/icons
[Install]
WantedBy=multi-user.target
and:
# /etc/systemd/system/refind-update-icons.service
[Unit]
Description=Copy rEFInd icons to UEFISYS Partition
[Service]
Type=oneshot
ExecStart=/usr/bin/rm -rf /boot/efi/EFI/arch_refind/icons
ExecStart=/usr/bin/cp -pr /usr/share/refind/icons /boot/efi/EFI/arch_refind/icons
However, I am still getting errors:
Gor 09 01:40:58 MyComputer systemd[1]: Stopping Copy rEFInd fonts to UEFISYS Partition.
Gor 09 01:42:25 MyComputer systemd[1]: Starting Copy rEFInd fonts to UEFISYS Partition.
Gor 09 02:25:21 MyComputer systemd[1]: Stopping Copy rEFInd fonts to UEFISYS Partition.
Gor 09 02:25:21 MyComputer systemd[1]: Stopped Copy rEFInd fonts to UEFISYS Partition.
Gor 09 02:25:21 MyComputer systemd[1]: Stopping Copy rEFInd ext4 driver to UEFISYS Partition.
Gor 09 02:25:21 MyComputer systemd[1]: Stopped Copy rEFInd ext4 driver to UEFISYS Partition.
Gor 09 02:25:21 MyComputer systemd[1]: Stopping Copy rEFInd EFI to UEFISYS Partition.
Gor 09 02:25:21 MyComputer systemd[1]: Stopped Copy rEFInd EFI to UEFISYS Partition.
Gor 09 02:25:21 MyComputer systemd[1]: Stopping Copy rEFInd icons to UEFISYS Partition.
Gor 09 02:25:21 MyComputer systemd[1]: Stopped Copy rEFInd icons to UEFISYS Partition.
Gor 09 02:26:13 MyComputer systemd[1]: Starting Copy rEFInd fonts to UEFISYS Partition.
Gor 09 02:29:47 MyComputer systemd[1]: Stopping Copy rEFInd fonts to UEFISYS Partition.
Gor 09 02:29:47 MyComputer systemd[1]: Stopped Copy rEFInd fonts to UEFISYS Partition.
Gor 09 02:29:47 MyComputer systemd[1]: Stopping Copy rEFInd ext4 driver to UEFISYS Partition.
Gor 09 02:29:47 MyComputer systemd[1]: Stopped Copy rEFInd ext4 driver to UEFISYS Partition.
Gor 09 02:29:47 MyComputer systemd[1]: Stopping Copy rEFInd EFI to UEFISYS Partition.
Gor 09 02:29:47 MyComputer systemd[1]: Stopped Copy rEFInd EFI to UEFISYS Partition.
Gor 09 02:29:47 MyComputer systemd[1]: Stopping Copy rEFInd icons to UEFISYS Partition.
Gor 09 02:29:47 MyComputer systemd[1]: Stopped Copy rEFInd icons to UEFISYS Partition.
<refind is upgraded at 22:24 according to pacman's log>
Gor 09 22:24:47 MyComputer systemd[1]: Starting Copy rEFInd icons to UEFISYS Partition...
Gor 09 22:24:48 MyComputer systemd[1]: Starting Copy rEFInd fonts to UEFISYS Partition...
Gor 09 22:24:48 MyComputer systemd[1]: Started Copy rEFInd icons to UEFISYS Partition.
Gor 09 22:24:48 MyComputer systemd[1]: Starting Copy rEFInd EFI to UEFISYS Partition...
Gor 09 22:24:48 MyComputer systemd[1]: Starting Copy rEFInd ext4 driver to UEFISYS Partition...
Gor 09 22:24:48 MyComputer systemd[1]: Started Copy rEFInd fonts to UEFISYS Partition.
Gor 09 22:24:48 MyComputer cp[13179]: /usr/bin/cp: cannot stat ‘/usr/lib/refind/drivers_x64/ext4_x64.efi’: No such file or directory
Gor 09 22:24:48 MyComputer cp[13174]: /usr/bin/cp: cannot stat ‘/usr/lib/refind/refind_x64.efi’: No such file or directory
Gor 09 22:24:48 MyComputer systemd[1]: refind-update-efi.service: main process exited, code=exited, status=1/FAILURE
Gor 09 22:24:48 MyComputer systemd[1]: Failed to start Copy rEFInd EFI to UEFISYS Partition.
Gor 09 22:24:48 MyComputer systemd[1]: Unit refind-update-efi.service entered failed state.
Gor 09 22:24:48 MyComputer systemd[1]: refind-update-ext4.service: main process exited, code=exited, status=1/FAILURE
Gor 09 22:24:48 MyComputer systemd[1]: Failed to start Copy rEFInd ext4 driver to UEFISYS Partition.
Gor 09 22:24:48 MyComputer systemd[1]: Unit refind-update-ext4.service entered failed state.
Gor 09 22:24:48 MyComputer systemd[1]: Starting Copy rEFInd EFI to UEFISYS Partition...
Gor 09 22:24:48 MyComputer systemd[1]: Started Copy rEFInd EFI to UEFISYS Partition.
Gor 09 22:24:48 MyComputer systemd[1]: Starting Copy rEFInd ext4 driver to UEFISYS Partition...
Gor 09 22:24:48 MyComputer systemd[1]: Started Copy rEFInd ext4 driver to UEFISYS Partition.
Gor 09 22:24:48 MyComputer systemd[1]: Starting Copy rEFInd icons to UEFISYS Partition...
Gor 09 22:24:48 MyComputer systemd[1]: Started Copy rEFInd icons to UEFISYS Partition.
Gor 09 22:24:48 MyComputer systemd[1]: Starting Copy rEFInd icons to UEFISYS Partition...
Gor 09 22:24:48 MyComputer systemd[1]: Started Copy rEFInd icons to UEFISYS Partition.
Gor 09 22:24:48 MyComputer systemd[1]: Starting Copy rEFInd icons to UEFISYS Partition...
Gor 09 22:24:48 MyComputer systemd[1]: Started Copy rEFInd icons to UEFISYS Partition.
Gor 09 22:24:48 MyComputer systemd[1]: Starting Copy rEFInd icons to UEFISYS Partition...
Gor 09 22:24:48 MyComputer systemd[1]: Started Copy rEFInd icons to UEFISYS Partition.
Gor 09 22:24:48 MyComputer systemd[1]: Starting Copy rEFInd icons to UEFISYS Partition...
Gor 09 22:24:48 MyComputer systemd[1]: refind-update-icons.service start request repeated too quickly, refusing to start.
Gor 09 22:24:48 MyComputer systemd[1]: Failed to start Copy rEFInd icons to UEFISYS Partition.
Gor 09 22:24:48 MyComputer systemd[1]: Unit refind-update-icons.service entered failed state.
Gor 09 22:24:48 MyComputer systemd[1]: Starting Copy rEFInd icons to UEFISYS Partition...
Gor 09 22:24:48 MyComputer systemd[1]: refind-update-icons.service start request repeated too quickly, refusing to start.
Gor 09 22:24:48 MyComputer systemd[1]: Failed to start Copy rEFInd icons to UEFISYS Partition.
Gor 09 22:24:48 MyComputer systemd[1]: Starting Copy rEFInd icons to UEFISYS Partition...
Gor 09 22:24:48 MyComputer systemd[1]: refind-update-icons.service start request repeated too quickly, refusing to start.
Gor 09 22:24:48 MyComputer systemd[1]: Failed to start Copy rEFInd icons to UEFISYS Partition.
Gor 09 22:24:48 MyComputer systemd[1]: Starting Copy rEFInd icons to UEFISYS Partition...
Gor 09 22:24:48 MyComputer systemd[1]: refind-update-icons.service start request repeated too quickly, refusing to start.
Gor 09 22:24:48 MyComputer systemd[1]: Failed to start Copy rEFInd icons to UEFISYS Partition.
Gor 09 22:24:48 MyComputer systemd[1]: Starting Copy rEFInd icons to UEFISYS Partition...
Gor 09 22:24:48 MyComputer systemd[1]: refind-update-icons.service start request repeated too quickly, refusing to start.
Gor 09 22:24:48 MyComputer systemd[1]: Failed to start Copy rEFInd icons to UEFISYS Partition.
Gor 09 22:24:48 MyComputer systemd[1]: Starting Copy rEFInd icons to UEFISYS Partition...
Gor 09 22:24:48 MyComputer systemd[1]: refind-update-icons.service start request repeated too quickly, refusing to start.
Gor 09 22:24:48 MyComputer systemd[1]: Failed to start Copy rEFInd icons to UEFISYS Partition.
Gor 09 22:24:48 MyComputer systemd[1]: Starting Copy rEFInd icons to UEFISYS Partition...
Gor 09 22:24:48 MyComputer systemd[1]: refind-update-icons.service start request repeated too quickly, refusing to start.
Gor 09 22:24:48 MyComputer systemd[1]: Failed to start Copy rEFInd icons to UEFISYS Partition.
Gor 09 22:24:48 MyComputer systemd[1]: Starting Copy rEFInd icons to UEFISYS Partition...
Gor 09 22:24:48 MyComputer systemd[1]: refind-update-icons.service start request repeated too quickly, refusing to start.
Gor 09 22:24:48 MyComputer systemd[1]: Failed to start Copy rEFInd icons to UEFISYS Partition.
Gor 09 22:24:48 MyComputer systemd[1]: Starting Copy rEFInd fonts to UEFISYS Partition...
Gor 09 22:24:48 MyComputer systemd[1]: Started Copy rEFInd fonts to UEFISYS Partition.
<reboot to test kernel>
Gor 10 00:05:41 MyComputer systemd[1]: Stopping Copy rEFInd fonts to UEFISYS Partition.
Gor 10 00:05:41 MyComputer systemd[1]: Stopped Copy rEFInd fonts to UEFISYS Partition.
Gor 10 00:05:41 MyComputer systemd[1]: Stopping Copy rEFInd ext4 driver to UEFISYS Partition.
Gor 10 00:05:41 MyComputer systemd[1]: Stopped Copy rEFInd ext4 driver to UEFISYS Partition.
Gor 10 00:05:41 MyComputer systemd[1]: Stopping Copy rEFInd EFI to UEFISYS Partition.
Gor 10 00:05:41 MyComputer systemd[1]: Stopped Copy rEFInd EFI to UEFISYS Partition.
Gor 10 00:05:41 MyComputer systemd[1]: Stopping Copy rEFInd icons to UEFISYS Partition.
Gor 10 00:05:41 MyComputer systemd[1]: Stopped Copy rEFInd icons to UEFISYS Partition.
Gor 10 00:07:22 MyComputer systemd[1]: Starting Copy rEFInd fonts to UEFISYS Partition.
It seems that systemd is too quick. It notices that something has changed e.g. that /usr/lib/refind/refind_x64.efi has been removed, triggers the service and then finds there is no /usr/lib/refind/refind_x64.efi to copy because the new version has not yet been installed. In the case of the .efi files, the service always seems to somehow manage to get everything into place but in the case of the fonts and icons (icons shown above), it often does not.
I'm not sure why this happens because I based this on the service file I found the wiki for keeping the kernel and initramfs synced to the ESP. So I would think it should work for at least the single file cases, if not the directories. Indeed my EFI update service syncs the kernel and initramfsx2 to the ESP flawlessly (up to now) even though the .path unit for that includes 3 triggering conditions and the .service and .path files are set up just the same.
I've read the manual pages for systemd.{path,service,unit} and couldn't see anything obviously helpful although I'm curious about timer units so I looked at the information on those but I guess they are for rather more sophisticated services than mine. I also looked at the wiki for systemd but it does not say anything about this kind of issue.
Intuitively, I wondered if there is not a clean way of telling systemd to wait until changes to the path have completed before running the service. Obviously I can think of ways to force the service to wait just by using sleep or something but I am sure that that is not the correct way to do it. So I'm pretty sure there is something wrong about the way I've set these up but I am just not seeing what it is. Any hints would be appreciated!

I have actually modified the refind path/service units somewhat, but it still works flawlessly for me. I usually wait for 2-5 min after pkg updates so that all the changes are synced to EFISYS before I reboot. There are the ones I use currently:
refind-efi_copy.path
[Unit]
Description=Copy rEFInd files to EFI System Partition
[Path]
PathChanged=/usr/lib/refind/refind_x64.efi
PathChanged=/usr/lib/refind/drivers_x64/ext4_x64.efi
PathChanged=/usr/lib/refind/drivers_x64/btrfs_x64.efi
PathChanged=/usr/lib/refind/drivers_x64/reiserfs_x64.efi
PathChanged=/usr/lib/refind/drivers_x64/iso9660_x64.efi
PathChanged=/usr/lib/refind/drivers_x64/hfs_x64.efi
PathChanged=/mnt/Source_Codes_Partition/Source_Codes/My_Files/Bootloader_Config_Files/refind_uefi/refind_uefi.conf
PathChanged=/mnt/Source_Codes_Partition/Source_Codes/My_Files/Bootloader_Config_Files/refind_uefi/refind_uefi_linux.conf
PathChanged=/mnt/Source_Codes_Partition/Source_Codes/My_Files/Bootloader_Config_Files/refind_uefi/refind_uefi_linux_boot.conf
PathChanged=/mnt/Source_Codes_Partition/Source_Codes/My_Files/Bootloader_Config_Files/refind_uefi/refind_uefi_archboot.conf
Unit=refind-efi_copy.service
[Install]
WantedBy=multi-user.target
refind-efi_copy.service
[Unit]
Description=Copy rEFInd files to EFI System Partition
# Requires=efisys.mount
[Service]
Type=oneshot
ExecStart=/usr/bin/cp -f /usr/lib/refind/refind_x64.efi /efisys/EFI/refind/refind_x64.efi
ExecStart=/usr/bin/sbsign --key /efisys/EFI/tools/efitools/db.key --cert /efisys/EFI/tools/efitools/db.crt --output /efisys/EFI/refind/refind_x64.efi /usr/lib/refind/refind_x64.efi
ExecStart=/usr/bin/cp -f /usr/lib/refind/drivers_x64/ext4_x64.efi /efisys/EFI/tools/drivers_x64/ext4_x64.efi
ExecStart=/usr/bin/sbsign --key /efisys/EFI/tools/efitools/db.key --cert /efisys/EFI/tools/efitools/db.crt --output /efisys/EFI/tools/drivers_x64/ext4_x64.efi /usr/lib/refind/drivers_x64/ext4_x64.efi
ExecStart=/usr/bin/cp -f /usr/lib/refind/drivers_x64/btrfs_x64.efi /efisys/EFI/tools/drivers_x64/btrfs_x64.efi
ExecStart=/usr/bin/sbsign --key /efisys/EFI/tools/efitools/db.key --cert /efisys/EFI/tools/efitools/db.crt --output /efisys/EFI/tools/drivers_x64/btrfs_x64.efi /usr/lib/refind/drivers_x64/btrfs_x64.efi
ExecStart=/usr/bin/cp -f /usr/lib/refind/drivers_x64/reiserfs_x64.efi /efisys/EFI/tools/drivers_x64/reiserfs_x64.efi
ExecStart=/usr/bin/sbsign --key /efisys/EFI/tools/efitools/db.key --cert /efisys/EFI/tools/efitools/db.crt --output /efisys/EFI/tools/drivers_x64/reiserfs_x64.efi /usr/lib/refind/drivers_x64/reiserfs_x64.efi
ExecStart=/usr/bin/cp -f /usr/lib/refind/drivers_x64/iso9660_x64.efi /efisys/EFI/tools/drivers_x64/iso9660_x64.efi
ExecStart=/usr/bin/sbsign --key /efisys/EFI/tools/efitools/db.key --cert /efisys/EFI/tools/efitools/db.crt --output /efisys/EFI/tools/drivers_x64/iso9660_x64.efi /usr/lib/refind/drivers_x64/iso9660_x64.efi
ExecStart=/usr/bin/cp -f /usr/lib/refind/drivers_x64/hfs_x64.efi /efisys/EFI/tools/drivers_x64/hfs_x64.efi
ExecStart=/usr/bin/sbsign --key /efisys/EFI/tools/efitools/db.key --cert /efisys/EFI/tools/efitools/db.crt --output /efisys/EFI/tools/drivers_x64/hfs_x64.efi /usr/lib/refind/drivers_x64/hfs_x64.efi
ExecStart=/usr/bin/cp -f /mnt/Source_Codes_Partition/Source_Codes/My_Files/Bootloader_Config_Files/refind_uefi/refind_uefi.conf /efisys/EFI/refind/refind.conf
ExecStart=/usr/bin/cp -f /mnt/Source_Codes_Partition/Source_Codes/My_Files/Bootloader_Config_Files/refind_uefi/refind_uefi.conf /efisys/EFI/boot/refind.conf
ExecStart=/usr/bin/cp -f /mnt/Source_Codes_Partition/Source_Codes/My_Files/Bootloader_Config_Files/refind_uefi/refind_uefi_linux.conf /efisys/EFI/arch/core/refind_linux.conf
ExecStart=/usr/bin/cp -f /mnt/Source_Codes_Partition/Source_Codes/My_Files/Bootloader_Config_Files/refind_uefi/refind_uefi_linux.conf /efisys/EFI/arch/mainline/refind_linux.conf
ExecStart=/usr/bin/cp -f /mnt/Source_Codes_Partition/Source_Codes/My_Files/Bootloader_Config_Files/refind_uefi/refind_uefi_linux_boot.conf /boot/refind_linux.conf
ExecStart=/usr/bin/rm -rf /efisys/EFI/refind/icons
ExecStart=/usr/bin/cp -rf /usr/share/refind/icons /efisys/EFI/refind/icons
ExecStart=/usr/bin/rm -rf /efisys/EFI/refind/fonts
ExecStart=/usr/bin/cp -rf /usr/share/refind/fonts /efisys/EFI/refind/fonts
Last edited by the.ridikulus.rat (2013-07-11 15:16:18)

Similar Messages

  • Issue with Carl's Auto Updating Report example

    Hi. I'm trying to figure out how to implement PPR templates into my application. I've looked at Carl's example and thought downloading it to my test workspace and checking it out would be the best way forward. I've created the table per the instructions and am getting an odd error when I try to set the refresh rate:
    Line: 23
    Char: 3
    Error: 'null' is null or not an object
    This is a link to my report:
    http://htmldb.oracle.com/pls/otn/f?p=43812:40:12406459224965513538::NO:RP::
    Does anyone have any tips, common errors, that I can check out?
    Thanks a bunch. Len

    OK. So I see from a previous post that region_id does not have a variable option. To find the region ID if I look at the source code for the page I use the Rnnnnn listed? Then go to the 'Edit Attributes' of the page and change the number in the HTML Header section?

  • Any issues with latest 2014 ios update & Straight Talk

    Hi, I've been with straight talk for about 2 weeks without any problem - switching --porting--pics.....all went well . Now my phone ( iPhone 3c) shows iOS update waiting..
    Due to all I have read here & there,I'm a bit uneasy to do the update. Has anyone had any issues with lates t2014 ios update using ST? Will it affect the working of the phone if I don't do update? Thanks for any input.

    Hi, Glad  that worked for you. I don't know why this is happening other than to offer an opinion. This hardware acceleration was causing an issue with the previous version of FP also. I think that this technology is ready but the websites are not, youtube included.
    The same thing happened with Flash Player for the mobile phones, Android in particular. Adobe was ready but had to wait on Google to catch up. So the users thot Adobe was at fault, but that wasn't the case. Google had to update and that was done with their 2.2 update. This is not an opinion however. I followed this because users were coming here asking why Flash Player wasn't available for their Android:-)
    Adobe/Microsoft/Mac/Linux are all involved and if one advances a particular technology that effects the others, then each one must make a change for that technology to work. At least that's how I see it.
    Thanks for marking your thread as answered
    Regards,
    eidnolb

  • Issues with cloud since maverick update

    Ever since i installed the new maerick update, my Cloud is not working properly. My passwords with my i-products all seemed "off" and the google password I had I've had to redo several times depending on which i-unit I'm on....I'm not a techie, and when I can't access my Contacts from my phone its too much to handle. (& maybe that is another problem, not sure). I'm very frustrated.

    This is a known issue with Mavericks. Hopefully, the next update will address this.
    You might want to post over in the Mavericks community support area to keep up to date on this.
    OS X Mavericks

  • Issues with ios 8.3 update on iPhone 5

    After updating my iPhone 5 to ios 8.3, I am unable to stream purchased music and videos from iTunes or any podcasts. I also can not stream videos on YouTube, Netflix, or Safari. Nothing works on both Wi-Fi and my normal data. If I could I would try to turn off the phone and restart but unfortunately my iPhone 5 is one of the ones that has the faulty lock button that needs to be repaired. But besides that, has anybody else been having issues with streaming music and videos?

    i'm looking for people with problems on iphone 5 with 8.3 because i'm still on ios7 and considering to upgrade
    but if you have problem with turning off the phone,
    you can set up "assistive touch" from setting > general > accessibility > assistive touch (down the bottom)
    you can also set this on the accessibility shortcut for the triple click on the home button to show/hide the assitive touch
    you'll see a black circle floating on the screen somewhere. you can move this thing around if it blocks what you want to see/tap
    now to turn off your phone you can tap the assistive touch button > device > tap and hold the 'lock screen' icon until the power off slider comes up.
    so you don't really have to fix the lock button

  • Acrobat 9 Pro issues with printing and now updating  !!! :(

    hello
    I had an issues with printing from my gmail account or from windows live mail
    so I made a complete re-installation
    now I am stuck with version 9.3.0 and when I check for updates I get a message
    UPDATER IS ALREADY RUNNING
    only... it's not running and nothing is updating !
    I made a restart... just in case... it did not change anything
    as to the printing issue, in case some of you have met it and cleared it...(hope)
    this was with version 9.5.0
    I get no error message but no pdf is created, only a text document with this :
    %%[ ProductName: Distiller ]%%
    %%[Page: 1]%%
    72gmvi not found, using Courier.
    44dcmta not found, using Courier.
    %%[ Error: invalidfont; OffendingCommand: xshow ]%%
    Stack:
    [96 96 97 72 96 42 64 0]
    %%[ Flushing: rest of job (to end-of-file) will be ignored ]%%
    %%[ Warning: PostScript error. No PDF file produced. ] %%
    not a good start for my week... I hope yours is nicer
    I'm running Win7 Ultimate x64

    thanks Mylenium
    the font association problem is something recent though, since I used acrobat to print mails directly from my gmail account previously...
    it's galling but I installed a free pdf printer which does the job, I needed copies of these mails urgently !
    as to the update issue, I see no aum.exe, msiexec.exe or setup.exe running... but that's quite above my head... do I look for those exact processes or are they generic names for processes ?
    does my question make sense ????

  • Possible Issue with Latest Office 2001 Update

    In the last few days my MB Air mid-2013 with Mavericks did an Office 2011 update to Version 14.3.9. Today I used it for the first time and Excel crashed each time I tried to use it. To get the job done I had to revert to the earlier build (version 14.3.8) from a backup and that appears to work normally.
    I don't know if this is an issue with Mavericks or if the update to 14.3.9 would have crashed with ML, too. Nor do I know if Word would have crashed since I had to get the task in Excel done before an appointment.
    Phil

    Apparently cannot edit the above. Title should have Office 2011, not Office 2001
    Phil

  • Problem with Date & Time Auto Update

    Hi everyone,
    I have been experiencing a date & time issue with my MacBook Air. (I am running 10.5.5 with all the latest software updates except for iTunes 8). Here's what's going on:
    Under the Date & Time preferences, whenever I try to check the box for "Set date & time automatically", the date and time do not update. I thought Norton might be the culprit in this case, but I have thoroughly uninstalled it, and this problem still persists. (I am actually borrowing this laptop for work, so I don't know if someone else possibly did something weird to it before I started using it. As far as I can remember, I've always had this problem -- the automatic setting has never worked.)
    I am connected to the internet when I do this, and I already have my time zone selected. Am I missing something obvious here?
    I apologize if this issue has been brought up before, but I did a lot of searching and couldn't find anything. Any suggestions would be greatly appreciated!!
    Thank you.

    whenever I try to check the box for "Set date & time automatically"
    You check it and the time does not update, or you try to check it and it doesn't show a little tick mark?
    Try it with Console.app open and see does it report any errors. Try changing the time server.
    AK

  • If you are having WIRELESS issues with SNOW LEOPARD.. update your software

    the latest osX update seems to have fixed the wireless issue with snow leopard

    I never had an issues with wireless before. Still don't. What was the problem?

  • Issues with latest Illustrator CC update

    Issue with the latest update of illustrator CC on windows 7
    When copping large elements in illustrator its crashing and its crashing when dragging them across to Photoshop. I didn't have this problem until I updated yesterday afternoon.
    Its also not opening PDF files if illustrator is already open. If illustrator is closed then I choose to open a PDF in illustrator it will work, but not if a document is already open in illustrator. Will not open from bridge either, but drag and drop does still work.
    I'm having to revert back to CS5 until the problem is resolved as its destroying my work flow

    _Phi_
    Thanks for reporting the issue to AI team. Will it be possible for you to share the AI file with me at [email protected] ?
    I want to try the workflow at my end.
    With Best Regards,
    Raghuveer

  • For those with Issues with the Recent GB update... what you can do to help fix this...

    I had my phone replaced by Verizon because the volume was ringing too low with disregard to the level it was set on... this happened immediately after the update and continued even with factory reset.  Verizon sent me another one which is doing the same thing but with more issues which include the picture sending and now my mute button is missing when I receive calls.  I am a business and cannot afford to miss a single call... especially as this is our slow time of year.  To do your part to help push Samsung to send out a corrective update you need to contact them... I did this and a verizon rep told me to encourage this on these forums... here is the link http://www.samsung.com/us/support/contact# it will get you to their contact page and from there you select email under product support.  The more of you that do this, the more they will realize there are several... some serious... issues with this update.  Thank you and good luck... to all of us!! 

    I noticed with my Charge phone that when I get a call the FIRST ring is highly muted (quite soft) and then all rings after that are full volume. 
    I wish that even the first ring was load (full volume) but I accept the fact that that is how GB 2.3.6 works.  Anyone know how to change this? 
    Ya can't win 'em all.
    JerryF

  • Safari Issues with 10.5.3 update

    Most of the topics dealing with Safari's issues with the update have to do with it connecting to the internet. I don't have that problem.
    Ever since I downloaded 10.5.3 Safari slows down all of my computer's processes. For example, if I open Safari, wait for the homepage (gmail) to load, then try to open any other program, I get the little color wheel for about 5 minutes. Then it loads - try and click anywhere on my computer - little color wheel for another 5 minutes. None of this happens when Safari isn't open.
    I've run disk utility about 10 times, but I'm no apple expert so I have no idea what I can possible do after that. Has anyone experienced this problem or have know of any fixes?

    No Safari enhancers installed
    The CPU is running consistently at around 16-18.
    Yeah - I figured most people don't see this problem. I don't think I mentioned it was an all encompassing error, I just used the 10.5.3 update as a time line to point when the problem started.
    The issue seems to decrease when I am connected to my school's network rather than my home network, which has me worried that it has to deal with my network at home. I didn't notice this distinction before. Now that I have though - I'm going to read through the topic dealing with networking to see if their is a solution there, but from what I have glanced over thus far, my issue is different.

  • Some issue with appstore and software update

    Hi all,
    I have some issues with app store and software update.
    Sometime App Store report that it was available software update for Mac OS X ML. When I enter in App Store to upgrade something goes wrong and I cannot do anything.
    If I close and open again App Store, it start to look for update and aftware 5-10 seconds App Store reports that there aren't update available.
    I take a look in /var/log/install.log and I found this:
    Jun  4 01:40:54 XXX.local Software Update[6741]: Can't load distribution from https://swdist.apple.com/content/downloads/03/60/041-5259/K4G5rj8jSCBBxxxLM2XHpjPJdGspgBHzFX/041-5259.English.dist.gz: Host cert invalid or otherwise insecure download
    Jun  4 01:40:54 XXX.local Software Update[6741]: Failed Software Update - trust evaluation failed in SecTrustEvaluate with result: 5
    Jun  4 01:40:54 XXX.local Software Update[6741]: Can't load distribution from https://swdist.apple.com/content/downloads/32/52/041-5688/9zts9cfPJssQJdHBjQ2TFM5yxSgqwrT6rM/041-5688.English.dist.gz: Host cert invalid or otherwise insecure downlo
    Jun  4 01:40:54 XXX.local Software Update[6741]: Failed Software Update - trust evaluation failed in SecTrustEvaluate with result: 5
    Jun  4 01:40:54 XXX.local Software Update[6741]: Can't load distribution from https://swdist.apple.com/content/downloads/21/24/041-5260/876hzpgDST2NBNK2LKmjpPBhDwrL94sJ9x/041-5260.English.dist.gz: Host cert invalid or otherwise insecure download
    Jun  4 01:40:54 XXX.local Software Update[6741]: Removing package source SUContentLocatorPackageSource from manager
    Any ideas?
    Thanks
    Regards

    Back up all data.
    Launch the Keychain Access application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Keychain Access in the icon grid.
    In the upper left corner of the window, you should see a list headed Keychains. If not, click the button in the lower left corner that looks like a triangle inside a square.
    In the Keychains list, there should be an item named System. If not, select
    File ▹ Add Keychain
    from the menu bar and add the following item:
    /Library/Keychains/System.keychain
    From the Category list in the lower left corner of the window, select Certificates. Look carefully at the list of certificates in the right side of the window. If any of them has a a blue-and-white plus sign or a red "X" in the icon, double-click it. An inspection window will open. Click the disclosure triangle labeled Trust to disclose the trust settings for the certificate. From the menu at the top, select
    When using this certificate: Use System Defaults
    Close the inspection window. You'll be prompted for your administrator password to update the settings. Revert all the certificates with non-default trust settings.
    From the menu bar, select
    Keychain Access ▹ Preferences ▹ Certificates
    There are three menus in the window. Change the selection in the top two to Best attempt, and in the bottom one to CRL.
    Log out, log back in, and test.

  • Clientless SSL RDP Plugin Issues with Java 1.7 update 45

    Hi All,
    It appears the latest Java update (1.7 Update 45) has caused some issues with the Cisco RDP plugin for Clientless SSL VPN.
    When attempting to run the plugin to connect to a host, the following error message is receieved:
    I believe this may be because the plugin is unsigned which on the previous version of Java seemed to cause pop-ups prior to running. This error seems to occur in both IE and Firefox. The OS is Windows 7.
    I can confirm that the previous version of Java (1.7 Update 25) worked OK with this plugin apart from the warning mentioned above.
    Does anybody know of a work around or a fix for this? Does Cisco have to update their plugin for this to work on the latest Java version?
    Regards
    David

    Hi Jouni,
    Thanks for the reply. From the thread you linked:
    The workaround posted in the Cisco  Bug is to uncheck the setting "Keep temporary files on my computer"  which is found in the Java Control Panel under the General Tab /  Temporary Internet Files / Settings ...
    This workaround has worked for me with Jave 7 Update 45 on both PC and Mac.
    I've just tested this and it has resolved the issue for me.
    Thanks!
    David

  • Issue with Alternate unit of measure

    Here in my production client which creating a material in April they have created with Base unit of measure = G and alternate unit of measure = EA
    ! EA = 60G....But actually they should have maintain 1 EA = 50g....Lot of docs got posted from April onwards...
    Movement types posted were 641,561, 562,101,102,601,653
    Now is there any possiblity to rectify it????

    Basically you need to correct your material master and then adjust the quantity with a physical inventory as Manoj already suggested.
    However, you should at least check each movement related to sales  like the 641, 601 and 653 movements if it was done in the alternative unit or in the base unit . MB51 can give you this info in the detailed report.
    you then have to analyze if you billed too much or too less to your customer.
    This should then be rectified before you adjust your inventory, because you may get even more problems with posting if you get a  customer complaint or a return which need to be posted with the old incorrect conversion ratio. Otherwise you may have to adjust your inventory a second time after such event ocurs.

Maybe you are looking for