How do I install VueScan from the Linux archive?

0
0
Asked By MellowCedar42 On

I bought a Dell computer from a surplus sale to use as part of a mobile scanning cart, but it came with Linux already installed. VueScan downloaded the Linux .tgz version automatically, and I'm having trouble following the README's terminal instructions. When I try the command, I get: `cp: cannot stat 'vuescan.svg': No such file or directory`. The instructions mention copying `vuescan.svg`, `vuescan.rules`, and the VueScan executable, then possibly removing `ippusbxd` or `ipp-usb` and reloading the udev rules. I only have limited time with Linux, so I'm looking for the simplest correct installation procedure.

3 Answers

Answered By SilverMaple3 On

The easier route depends on your Linux distribution. Run `cat /etc/os-release` to identify it. Debian, Ubuntu, and Mint generally use the `.deb` package, which can usually be installed with `sudo apt install /path/to/the/file.deb`. Fedora-based systems use an `.rpm` package instead. Installing the matching package avoids having to manually copy the icon, executable, and device rules.

Answered By QuietOrbit7 On

That error usually means the terminal is not currently in the folder containing the VueScan files, or the filename was copied incorrectly. First extract the `.tgz` archive, open a terminal in the extracted directory, and check the filenames with `ls`. Make sure it is `vuescan.svg` with no space before `.svg`. Then run each command separately, rather than pasting the whole README as one line: `sudo cp vuescan.svg /usr/share/icons/hicolor/scalable/apps/`, `sudo cp vuescan.rules /lib/udev/rules.d/60-vuescan.rules`, and `sudo cp vuescan /usr/bin/`. Afterward, run `sudo udevadm control --reload-rules`. The README appears to contain formatting or transcription errors, including `sudo co` instead of `sudo cp` and a broken reload command.

Answered By PaperKite88 On

You may not need VueScan at all unless you specifically require one of its features. `simple-scan` is free and often already available through the normal package manager. NAPS2 is another alternative with a Linux package. VueScan may also add a watermark unless it is registered, so checking a free scanner application first could save some hassle.

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.