Not Supported
Having checked the stable version of the SANE libraries that is included in Ubuntu from the sane-project website, the scanner in question is not yet supported.
To double check this you'll need your USB identifier that you can obtain using lsusb.
The SCX range of scanners use the sane-xerox_mfp back-end.
Checking the unstable version (the version you will need to compile from GIT source) again your scanner is not supported.
Possible solution
Possibly you can add your model if it is similar to one of the listed models in the above links. This involves adding the USB ID to /etc/sane.d/xerox_mfp.conf together with similar information to the SANE rules in /lib/udev/rules.d/40-libsane.rules
Obviously change the values to match your scanner.
To give you an example add the following text to /etc/sane.d/xerox_mfp.conf:
#Samsung CLX-3185FW
usb 0x04e8 0x343d
and /lib/udev/rules.d/40-libsane.rules by adding
# Samsung CLX-3185FW
ATTRS{idVendor}=="04e8", ATTRS{idProduct}=="343d", ENV{libsane_matched}="yes"
Make sure you install the following package:
sudo apt-get install acl
source
If the above does not work, try also adding your user account to groups lp and scanner by:
sudo usermod -a -G lp [username]
sudo usermod -a -G scanner [username]