• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/29

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

29 Cards in this Set

  • Front
  • Back
what does ' lpd ' stand for
Line Printer Daemon. a printer process that ques print jobs. (puts print jobs in order)
this process usually works on any printer. inkjet, laser, line, parrallel, usb, networked printers.
where are the print Ques or spool directorys in Linux
/var/spool/lpd
where are the configuration files for a printer in Linux?
/etc/printcap
There are alturnative printing systems what are they.
BSD berkley standar distro
LPRng
CUPS common unix printing sys
/etc/cups
Read up on them if you need
what is a GUI interface for setting up your printer in linux?
printtool
in the GUI printer setup in Linux. you have the option of ...local, unix, windows, jetdirect. which one might you use for a Networked printer.
Unix printer LPD
configuring 2 local printers and you need to name both. what do you name them.
/dev/lp0
/dev/lp1
when picking drivers for your printer. you do not see your model printer driver. what do you do here.
go to the manufacture site for the driver and add it manually. Or choose a generic driver that works for your model in the meantime. if there are multiple drivers to choose from. Start from the most recent or from the top of the list and work your way down.
all printer information is put in the /ect/printcap file. what happens if I edit this file to manually add a printer?
ALL your information will be LOST.
you must edit the /ect/printcap.local file
what tool would you use to test your printer.
printtool
look up your print que there is a job that is backed up
lpq
cancel a print job
first look in the que for the print job number.
lpq
'then cancel the job'
lprm 235
'note: 235 is the print job number and the only ones that can cancel that print job are root and the owner of the file'
what tool do you use to share files between Windows and Linux.
SAMBA
what tool do you use to share files between Linux and Unix machines
NFS...novells network file system
To share files over the network of a windows machine. First you must share the file/folder on the Windows machine itself! then what?
smbclient //computername/foldername/filename -U username
look up your print que there is a job that is backed up
lpq
cancel a print job
first look in the que for the print job number.
lpq
'then cancel the job'
lprm 235
'note: 235 is the print job number and the only ones that can cancel that print job are root and the owner of the file'
what tool do you use to share files between Windows and Linux.
SAMBA
what tool do you use to share files between Linux and Unix machines
NFS...novells network file system
To share files over the network of a windows machine. First you must share the file/folder on the Windows machine itself! then what?
smbclient //computername/foldername/filename -U username

Note: put in your password the type 'help' for additional options
you've logged into a shared folder with samba. how do you download a file?
first list the folder contents.
ls
get file-name.txt
map to a folder or drive from another machine
smbmount //computername/foldername
Note: when you save or open a file in this manner it is saved to the machine you just mapped to. NOT your machine
unmount or disconnect from the shared or mapped drive you must mapped to
smbumount //computername/folder
name a GUI interface for navigating files and folders (directories) in Linux
Nautilus
list all the samba commands
cd /usr/bin
ls -l smb*
to share with NFS you must be root. Mount a drive from a machine called Machine123 in the home directory of JohnDoe
mount Machine123:/home/JohnDoe /mnt/doe
(mount followed the machine name: followed by directory to share...followed by the name and place it will show on Your machine) then
cd /mnt/doe
to the /mnt/doe directory and manipulate files. Like a mapped drive.
unmount a share
umount //computername/share
some devices are auto-mounted some are not. Show a list of devices, drives, shares that are mounted
more /etc/fstab
'files system table'
you want to share a folder to certain computers with certain permissions. what do you do?
cd /etc/
more exports
vi exports
'add the path to share to the file with machine names and privileges then save'
/home machine1(rw), machineA(rw), chrisMach(ro)