MFC-L5700DW

FAQ 및 문제 해결

FAQ 및 문제 해결

Command List of brscan. (Linux)

> Stop Scan-key-tool
> List available Brother devices
> Change the name of the target user
> Set password
> Hide a scanner device from Scan-key-tool (Available only with network connected scanner)
> Change the action of scan-key-tool

 

Stop Scan-key-tool

Command:  brscan-skey  -t


List available Brother devices

Command:  brscan-skey  -l


Change the name of the target user
  1. Login as the user which you want to change the target name which is displayed on the scanner LCD.
  2. Change the name for brscan-skey.

    Command:  brscan-skey  -u  (Newname-for-brscan-skey)
     
  3. Restart brscan-skey.

    Command(Stop): brscan-skey  -t
    Command(Start): brscan-skey

***The new user name must be less than 16 characters, only alphabet and numbers can be used.
***Command without the name parameter will reset the name for brscan-skey.


Set password
  1. Run brscan-skey command with "-p" option.(superuser authorization is required)

    Command: brscan-skey  -p  (4-numeric-digit-password)
     
  2. Restart Scan-key-tool

    Command(Stop): brscan-skey  -t
    Command(Restart): brscan-skey
     
  3. The password is required on the device LCD to start scanning.

***To reset the password, use "brscan-skey -p" without parameters.(superuser authorization is required)


Hide a scanner device from Scan-key-tool (Available only with network connected scanner)
  1. Check the device name.

    Command: brscan-skey  -l
     
  2. Delete the entry.

    Command: brscan-skey  -d  (device-name)

Change the action of scan-key-tool

The actions taken by the scan-key-tool are described in the /usr/local/Brother/sane/brscan-skey-(version).cfg

Parameters
IMAGE=(The script for scan-to-image selection)
OCR=(The script for scan-to-ocr selection) ***Scan-to-OCR is not available
EMAIL=(The script for scan-to-email selection)
FILE=(The script for scan-to-file selection)

 

Default shell script for scan-to-image;
/usr/local/Brother/sane/script/scantoimage-0.2.1-1.sh

 

Default shell script for scan-to-file;
/usr/local/Brother/sane/script/scantofile-0.2.0-1.sh

 

Default shell script for scan-to-email;
/usr/local/Brother/sane/script/scantoemail-0.2.0-1.sh

 

Example: Multiple sheets are scanned from ADF using scan-to-file, and it is made into one PDF file.

 

Change the file(/usr/local/Brother/sane/script/scantofile-x.x.x-x.sh) as follows.

NOTE:scanadf, pnmtops, and ps2pdf need to be installed.

--------------------------------------------------------------
#! /bin/sh
set +o noclobber
#
#   $1 = scanner device
#   $2 = friendly name
#

#  
#       100,200,300,400,600
#
resolution=100
device=$1
BASE=˜/brscan
mkdir -p $BASE

if [ "`which usleep`" != ' ' ];then
    usleep 10000

else
    sleep  0.01
fi
output_tmp=$BASE/$(date | sed s/' '/'_'/g | sed s/'\:'/'_'/g)

echo "scan from $2($device)"
scanadf --device-name "$device" --resolution $resolution -o"$output_tmp"_%04d
for pnmfile in $(ls "$output_tmp"*)
do
   echo pnmtops  "$pnmfile"  "$pnmfile".ps
   pnmtops  "$pnmfile"  > "$pnmfile".ps
   rm -f "$pnmfile"
done

echo psmerge -o"$output_tmp".ps  $(ls "$output_tmp"*.ps)
psmerge -o"$output_tmp".ps  $(ls "$output_tmp"*.ps)

echo ps2pdf "$output_tmp".ps   "$output_tmp".pdf
ps2pdf "$output_tmp".ps   "$output_tmp".pdf

#cleanup

for psfile in $(ls "$output_tmp"*.ps)
do
   rm $psfile
done
rm -f "$pnmfile".ps
--------------------------------------------------------------

질문의 대답이 없는 경우 다른 FAQ를 확인했습니까?

설명서를 확인했습니까?

도움이 더 필요한 경우 Brother 고객 서비스에 문의하십시오.

내용 피드백

지원을 개선하는 데 도움이 되도록 아래에 피드백을 제공하십시오.

1단계: 이 페이지의 정보가 얼마나 도움이 됩니까?

2단계: 추가할 의견이 있습니까?

이 양식은 피드백용으로만 사용됩니다.