以惠普打印机为例
第一步、安装cups打印机服务器
1.终端登录root
2.输入apt-get update等待更新
3.输入apt-get install cups安装打印服务。
4.输入apt-get install hplip安装惠普打印机驱动。
5.输入cupsctl --remote-any运行远程访问。
6.惠普系列的打印机,根据官方要求,首次使用需要执行一次许可认证。
在终端中输入命令 hp-plugin-ubuntu 即可。
第二步、安装远程虚拟USB方案VirtualHere扫描服务器
1.新建install.sh文件
2.复制以下脚本内容
#!/bin/sh
if [ "$(id -u)" -ne 0 ]; then
echo "Please run with sudo"
exit 1
fi
if [ -n "$1" ]; then
FILENAME="$1"
else
ARCH=$(uname -m)
if [ -z "${ARCH##arm}" ]; then
FILENAME="vhusbdarm"
elif [ "$ARCH" = "mips" ]; then
FILENAME="vhusbdmips"
elif [ "$ARCH" = "mipsel" ]; then
FILENAME="vhusbdmipsel"
elif [ -z "${ARCH##x86_64}" ]; then
FILENAME="vhusbdx86_64"
elif [ -z "${ARCH##aarch64}" ]; then
FILENAME="vhusbdarm64"
else
FILENAME="vhusbdi386"
fi
fi
wget https://www.virtualhere.com/sites/default/files/usbserver/$FILENAME
chmod +x $FILENAME
mv $FILENAME /usr/local/sbin
mkdir -p /usr/local/etc/virtualhere
if [ -d "/etc/systemd/system" ]; then
cat << EOF > /etc/systemd/system/virtualhere.service
[Unit]
Description=VirtualHere Server
After=network.target
[Service]
Type=forking
ExecStart=/usr/local/sbin/$FILENAME -b -c /usr/local/etc/virtualhere/config.ini
[Install]
WantedBy=multi-user.target
EOF
systemctl daemon-reload
systemctl enable virtualhere.service
systemctl start virtualhere.service
else
echo "Error, only systemd is supported"
fi
3.终端输入sh install.sh自动安装VirtualHere
4.电脑安装USB方案VirtualHere客户端连接你的扫描服务器地址(ip:7575)
5.在软件列表中选择扫描仪,点击连接,连接后状态变成已连接
6.如果之前电脑装过扫描仪驱动,直接按照之前的扫描方法进行扫描操作即可(控制面板-设备和打印机-右键打印机-开始扫描)如果设备和打印机里面没有开始扫描选项,请下载打印机的驱动程序进行安装或者使用驱动精灵安装一下驱动即可
7.扫描功能使用完后记得把软件的USB设备断开,否则无法使用打印功能,打印后打印机无响应