Adobe Download: Adobe Reader 9.1
The redistributable package of Adobe Reader 9.1, without Adobe AIR or Download Manager bundled. This is the simple Reader-only package installer, no Internet connection needed once it is downloaded.
Find all current special offers on Adobe products.
Adobe Download: Adobe Reader 9.1
If there is ever a problem when a PDF document is viewed, such as an error generated by Adobe or a failure to print the PDF file, then reinstalling the program is the best option. To do this, simply:
- Uninstall any currently installed “Adobe Acrobat Reader” programs in the Control Panel’s Add/Remove programs (in Windows Vista and Windows 7 it is called “Programs and Features”).
- If there are problems uninstalling Acrobat, such as an error such as “THE PATCH PACKAGE COULD NOT BE OPENED. Verify the patch package exists and you can access it, or contact the application vendor.” then do the following sub-routine:
- Download Microsoft’s Clean Up Utility.
- Run it to install the Clean Up program.
- Now run the Clean Up Utility program by clicking Start > All Programs > Windows Install Clean Up
- In the list of program that the utility offers fins Acrobat Reader, click once on it to select its line, then click the Remove button.
- Download and install Acrobat Reader from the link provided above.
- Once it is installed, now uninstall it in the Control Panel’s Add/Remove programs (in Windows Vista and Windows 7 it is called “Programs and Features”).
- Install the Acrobat program after downloading it from the link above. The program has been “reinstalled” now. This reinstallation takes care of most problems that can occur in Reader, and it’s plugin / add-on for Mozilla Firefox and Internet Explorer.
There have been some mentions of an Adobe Cleanup Tool or Adobe Uninstall Tool made to uninstall Reader manually, but these are still unavailable from the Adobe website to the public. Perhaps their technical support staff can provide the utility if a customer contacts them, as one blogger stated.
Posted under Browsers, Downloads, Freeware, Microsoft
This post was written by Content Curator on November 13, 2009
How to CHMOD on files but not directories (inodes)
From Linuxquestions.org:
“There are probably several methods, but one is to use find to produce a list of all files (not directories) and then execute chmod on each of them. For example
find /my/directory -type f -exec chmod 644 '{}' +
Change the red parts to fit your needs. If you wonder what that ‘{}’ is..well, you may have guessed that it’s where the filelist is being put when exec’ing the given command on each file.
You can also first try the command without chmod’ing to see that it affects the right files:
find /my/directory -type f
The above would find all regular files (not directories, for example) from within /my/directory.
If the command happens to throw you an error about the exec part, chances are it’s because of the plus sign (+) that ends the exec part. In this case try replacing the plus (+) with an escaped semicolon (\;) so it becomes
find /my/directory -type f -exec chmod 644 '{}' \;
On some machines I remember that it worked with semicolon (which needs a backslash in front of it, to protect it from being interpreted by your shell), but on my current installation it’s the plus sign (without a backslash).
Another way would probably be to list all regular files on the directory (using either find or any tool that can just list all files without directories) and then pipe the output to xargs with which the chmod was run.”
and from http://movabletripe.com/archive/recursively-chmod-directories-only/
”
June 19th, 2006
find . -type d -exec chmod 755 {} \;
This will recursively search your directory tree (starting at dir ‘dot’) and chmod 755 all directories only.
Similarly, the following will chmod all files only (and ignore the directories):
find . -type f -exec chmod 644 {} \;
“
Posted under Linux
This post was written by Content Curator on October 17, 2009