I just got this back from another forum..
What do you think ?
It is bit over my head at the moment.. Will have to absorb it
I found this driver on the Xerox site which says it is Linux for my Fuji Xerox 8570 ColorCube.
Downloaded XeroxLinuxi686xpxx_4.50.11 and installed to XeroxLinuxi686xpxxInstall folder.
My normal reaction ala Windows is to click SetUp however that dies not work here.
Yep, you were doing this as yourself. The readme states:
run setup within the install directory as root to install the driver.
Clicking on it might have tried to run 'setup' but if it needs root privileges to complete the installation, it'd eventually fail.
The 'readme' file is giving you hints for four different ways to run the 'setup' program/script. You may just need to come up with directories you want to use for the installation destination ("install_path") and what looks like temporary workspace ("tmp_path") for the installation process.
The install process may be as simple as issuing (in a terminal window):
- Code:
$ cd $HOME/Downloads/ColorCube<tab>/XeroxLinux<tab>/XeroxLinuxi686xpxxInstall
$ sudo ./setup
and responding to the questions it asks. BTW: I assume that tab completion works on your desktop; if not, you'll need to type in the full name of those download directories.
Since you need to run the installer as 'root', the 'sudo' is required and probably you'll have to enter the root password when prompted. My guess is that, using this form of the setup, you're going to be prompted for values for "install_path" and "tmp_path". Without knowing anything about what the installer is going to be placing in your filesystem, I would say that using "install_path" == "/usr/local/share/Xerox" and "tmp_path" == "/tmp" would be fairly safe. If the installer balks, it'll likely be that "/usr/local/share/Xerox" doesn't exist. Use "sudo mkdir /usr/local/share/Xerox" to create it and rerun "setup".
NOTE: Given that line in the 'readme':
To uninstall a previous installation:
...
For all other installations, remove the "Xerox" installation directory. <==<< THIS ONE!
I would NOT specify "/usr/local/bin" as the "install_path"---if you don't already have locally-written programs and scripts residing in that directory, you eventually will and it'd be a shame to clobber them when a new Xerox driver needs to be installed.
If the above 'setup' command doesn't run ("Permission denied" or "command not found"), it's probably not marked as executable (that could also be why your double-clicking on it didn't work). Either issue "chmod +x setup" in the "XeroxLinuxi686xpxxInstall" directory and rerun the 'sudo' command line or change that 'sudo' command to be:
- Code:
$ sudo sh ./setup
Reply back if anything looks "odd" or doesn't make sense.
Good luck...