Hello,
I am trying to install Samsung unified linux driver using the terminal. However installation stop at the end of license agreement and I don’t know how to proceed. Maybe someone can help?
Hello,
I am trying to install Samsung unified linux driver using the terminal. However installation stop at the end of license agreement and I don’t know how to proceed. Maybe someone can help?
Hello and welcome to the openSUSE forums.
As people here can not look over your shoulder, please be more descriptive about what you are doing. You try to install exactly what, you got it from where and what commands do you use and what output exctly do you get?
Remember that copy/paste of computer terminal output is the most exact way to show what is happening without much extra explaining needed.
There is an important, but not easy to find feature on the forums.
Please use CODE tags around copied/pasted computer text in a post. It is the # button in the tool bar of the post editor. When applicable copy/paste complete, that is including the prompt, the command, the output and the next prompt.
An example is here: Using CODE tags Around your paste.
Regards,
I’ve used Samsung printers for quite a while now, all with the ULD drivers, but…
I don’t install the package, instead I do a manual “minimal” install of what is needed.
First off, from the ULD*.tar.gz package extract the following files to:
rastertospl - to “/usr/lib/cups/filter”
libscmssc.so - to “/usr/lib64”
and the relevant *.ppd file for your printer, Samsung’s naming convention makes it quite easy to identify the one needed. to “/usr/share/cups/model/manufacturer-PPDs/samsung”
Not let me down yet…
Hello,
I am running
./install.sh
in the terminal and don’t know how to get out from reading license agreement which ends as
NCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THE ABOVE LIMITATION OR EXCLUSION MAY NOT APPLY TO YOU ONLY TO THE EXTENT SUCH APPLICATION IS CONTRARY TO THE LAWS OF RELEVANT JURISDICTIONS, COUNTRIES OR STATES.
10. Others
If you have any questions regarding this agreement and other products, please contact SAMSUNG ELECTRONICS.
lines 39-49/49 (END)
the script is
if sh "$SCRIPTS_DIR/pre_install.sh" "$@" ; then
if sh "$SCRIPTS_DIR/package_install.sh" "printer-meta" ; then
# CUPS - OK
sh "$SCRIPTS_DIR/package_install.sh" "scanner-meta"
else
# CUPS - NG
show_nls_message_no_nl "**** Do you want to continue to install scan driver ? [y/n] : "
if -z "${CONTINUE_INSTALL}" ] ; then
read CONTINUE_INSTALL
fi
if "y" = "${CONTINUE_INSTALL}" ] || "Y" = "${CONTINUE_INSTALL}" ] ; then
sh "$SCRIPTS_DIR/package_install.sh" "scanner-meta"
fi
fi
sh "$SCRIPTS_DIR/post_install.sh" "$@"
fi