Enable printing from Windows and Macs remotely through Linux Print server - Share Brother Printer DCP-1610W with Linux CUPS and Samba Windows Share

Size: px
Start display at page:

Download "Enable printing from Windows and Macs remotely through Linux Print server - Share Brother Printer DCP-1610W with Linux CUPS and Samba Windows Share"

Transcription

1 Enable printing from Windows and Macs remotely through Linux Print server - Share Brother Printer DCP-1610W with Linux CUPS and Samba Windows Share Author : admin I've recently bought a new Printer model Brother DCP 1610W and as in my home I have already a small Linux router and a web server where this blog and a couple of other websites runs and I need multiple PC / notebook / mobile phone enabled people to print on the Printer easily pretty much like a Printing server for a Small Office environment. To do that of course I needed it configured to be accessible remotely for print via LAN and Wireless network. The task is not a complex one and printing remotely over the network is a standard thing many company organizations / universities and univerities does for quite some time and hence nowadays most printers are network connect ready so you just have to place them inside your home or corporate network and use the time to configure them via their web configuration interface or even some have their own embedded wifi adapter, as well as many printers nowdays can even be ready to print directly by just 1 / 17

2 connecting the Printer to the Wi-Fi network and installing its drivers on a Win host. Anyhow the most common way for both home printer configurations and corporate I'm aware of still is to Share the printer via Windows Server or Win Server Domain so anyone connected to the Network to be able to Add the printer via Winblows. In the case i'm going to describe below my home the Wi-Fi router is connected to an 5 Port Network Switch (HUB) which on its hand is connected to the Linux router which serves multiple things (a Linux router, a hosting server (web server and a database server hosted, a mail server, traffic proxy server, a firewall and a NAT router), I decided to Share the printer to Wi-Fi connected and LAN clients directly switched via an UTP cable to the switch by using the good old Linux Samba Sharing server. I did not actually do that for a really long time hence before I started I did some quick research to get an idea on the general steps to partake to succeed in Sharing the Printer over the network of this Debian's Wiki SystemPrinting Guide was mostly helpful. 1. Downloading and Installing necessery Brother Printer deb packages A small remark to make here is my Linux server is running Debian GNU / Linux and hence this article is giving details on how Printer can be Shared on Debian though a minor adaptation of the article should make it possible to install also on any RHEL / CentOS / SuSE etc. Redhat based RPM Linux distribution.) First step to do is to download Brother printer vendor provided drivers as of moment of writting this article they're here To download the drivers get the proper links and use wget or curl to download all the necessery.deb archives in lets say in /root/brother-printer-drivers e.g. before that create the folder with: root@linux:/root# mkdir /root/brother-printer-drivers Also it might be helpful for those who need some other Brother Printer Linux driver complete list of Brother Printer all Linux drivers as of time of writting this post is found on this URL here Next you need to install following Brother printer driver deb packages brscan-skey brscan4 2 / 17

3 dcp1610wcupswrapper dcp1610wlpr cd brother-printer-drivers dpkg -i --force-all brscan-skey amd64.deb... dpkg -i --force-all brscan amd64.deb... dpkg -i --force-all dcp1610wcupswrapper i386.deb... dpkg -i --force-all dcp1610wlpr i386.deb... cd../ Once installed dpkg -l should show like so: dpkg -l grep -i brother ii brscan-skey Brother Linux scanner S-KEY tool ii brscan Brother Scanner Driver ii dcp1610wcupswrapper Brother DCP-1610W CUPS wrapper driver ii dcp1610wlpr Brother DCP-1610W LPR driver Brother's vendor provided packages will install drivers under /opt/brother ls -al /opt/brother/???? 16 drwxr-xr-x 4 root root 4096??? 26 13:58./ drwxr-xr-x 3 root root 4096??? 26 13:55../ drwxr-xr-x 3 root root 4096??? 26 13:58 Printers/ drwxr-xr-x 4 root root 4096??? 26 13:58 scanner/ 3 / 17

4 2. Installing CUPS Printing Service and related Filters and Postscript packages necessery for PDF processing on CUPS server side apt-get install --yes cups cups-client cups-common cups-pdf cups-ppdc foomatic-db foomatic-db-engine foomatic-filters foomatic-filters-ppds openprinting-ppds lpr hp-ppd hpijs cups-pdf ghostscript-cups Your printing should work normally without cups-pdf and ghostscript-cups packages installed but I install them just in case if PDF processing is problematic you can skip that. It is also useful to install sane and sane-utils packages if you're going to use the brother's scanner capabilities. root@linux:/root# apt-get install --yes sane sane-utils Note that considering that all packages installed fine and the CUPS service is running, this should have set a proper printer into /etc/printcap a short database used to describe printers. printcap file is being used by UNIX's spooling system and allows you to dynamic addition and deletion of printers, for Linux / *Nix hosts which have more than one printer connected and added in CUPs records for the various printer goes there. With a single Brother DCP-1610W Printer like my case is you should have records similar to these: root@linux:~/brother-printer-drivers# cat /etc/printcap DCP1610W:\ :mx=0:\ :sd=/var/spool/lpd/dcp1610w:\ :sh:\ :lp=/dev/usb/lp0:\ 4 / 17

5 :if=/opt/brother/printers/dcp1610w/lpd/filter_dcp1610w:? Walking in Light with Christ - Faith, Computing, Diary 3. Adding a Printer in CUPS the easy way through CUPS Printing System Web Interface CUPS has a nice web interface for setting up and administering printers and print queues. Below is a selfexplanatory screenshot of Add Printer screen. Use your favourite browser (Firefox, Opera, Chromium, lynx, elinks - yes the great news is console / terminal browsers are also supported well by cups web iface) to display interface and add a printer via the Administration screen. If you are asked for a username and password see here. 5 / 17

6 There are three sections. The first is for local printers; that is, printers which are usually attached to the machine you are using. These are very often printers using a USB connection but can be parallel or serial port printers. Adding a USB printer is a common occurance and one should automatically be detected as a local printer and a URI (Unified Resource Indicator) for its connection displayed on the next page. The Other Network Printers section requires you to specify the destination for the remote print queue/printer, which could be on the local network or many kilometres away. AppSocket is almost always available on a network printer and other devices and requires only the IP address of the printer and a port number. An Internet Printing Protocol (IPP) URI is the preferrred choice for connecting to another CUPS server because it is CUPS' native protocol. ipp14 is the ipp backend from CUPS 1.4 and Debianspecific. It is provided because some devices do not work with the current ipp backend, which has a stricter adherence to the IPP standard. A Line Printer Daemon (LPD) URI could be considered if the remote printing service does not support IPP satisfactorily or at all. As before, when a remote print queue is doing the filtering choose RAW as the Make/Manufacturer. 4. Printer Status and Control testing whether CUPS printing is up and running 6 / 17

7 Once cups is installed and hopefully up and running you should see the cups process up and running to check it do: /etc/init.d/cups status; ps axuwwf grep -i cups grep -v grep Status of Common Unix Printing System: cupsd is running. root ? Ss Mar17 0:00 /usr/sbin/cupsd -C /etc/cups/cupsd.conf To get some further testing you can also use lpstat command and should get ouput similar to belows: lpstat -t scheduler is running no system default destination device for DCP1610W: usb://brother/dcp-1610w%20series DCP1610W accepting requests since Fri Mar 17 23:03: printer DCP1610W disabled since Fri Mar 17 23:03: Unplugged or turned off At the moment of issuing above command it shows printer is disabled because of moment of execution the printer was turned off for a while cause I was not needing it you should get usually an output of enabled and ready to print. lpstat is also about to report whether a queue is accepting jobs and what is yet to be printed you can do 5. Install and Configure Samba Sharing Server on the Linux server 7 / 17

8 You can setup CUPS to allow Windows machines to print to a CUPS server using an http address. First, install the samba package. When you are asked to use WINS, say yes. root@linux:/root# apt-get install samba Next you might want to set setup your /etc/cups/cupsd.conf file by default CUPS would listen to LPD's port 631 if you don't have a strong firewall isolating you from the Internet on port 631 you might want to change that port to another one lets say to Port I personally prefer keep the default port 631 and do use a robust firewall. If you want to change it modify config to something like: # Our private connection we listen to Listen *:49651 # Allow machines on local network to use printers Order allow,deny Allow * Allow * If you like to filter access to CUPs daemon to receive Printing requests to be originating only from the local network place in smb.conf also something with your private network ranges: # Allow machines on local network to use printers Order allow,deny Allow * Allow * Allow * 8 / 17

9 # Allow remote administration... Order allow,deny ## Allow all Allow * Allow * Allow * # Allow remote administration... Order allow,deny ## Allow all Allow * Allow * Allow * # Allow remote administration... Order allow,deny ## Allow all Allow * Allow * Allow * This will listen on port from any network. You may use some other port number besides 631. Note that the dynamic and/or private ports as specified by the IANA are in the range through Also, this will only allow computers from the local network to print to the CUPS printers. 6. Use CUPS Printing server to print over the network directly Next you need to restart the CUPS daemon once again as it will be used for samba printing 9 / 17

10 # service cups restart Now on each Windows machine, Choose that you want to install a network printer and that you want to install a printer on the Internet or home/office network. The URL you will use should be smth like: Lastly, select the Brother downloaded from Internet or the one that's available on the Install CD, for any other vendor printer if it is lets say HP Printer or Canon to install use the respective provided driver or as a last resort use the Generic section driver labeled MS Publisher Color Printer. 7. Configure Samba to Share CUPS network enabled printer I've done a minor changes in default installed /etc/samba/smb.conf to make the printer accessible from The Samba server here is the main things to consider changing: # Change this to the workgroup/nt-domain name your Samba server will part of workgroup = WORKGROUP # security = user security = share [printers] 10 / 17

11 comment = PC Freak Printer browseable = yes path = /var/spool/samba printable = yes guest ok = yes read only = yes create mask = 0700 # Windows clients look for this share name as a source of downloadable # printer drivers [print$] comment = Printer Drivers path = /var/lib/samba/printers browseable = yes read only = yes guest ok = yes Next restart Samba server to make the new setting take affect: root@linux:/# /etc/init.d/samba restart Stopping Samba daemons: nmbd smbd. Starting Samba daemons: nmbd smbd. root@linux:/# ps axu grep -E "smb nmb" root ? Ss 16:53 0:00 /usr/sbin/nmbd -D root ? Ss 16:53 0:00 /usr/sbin/smbd -D root ? S 16:53 0:00 /usr/sbin/smbd -D root pts/6 S+ 16:53 0:00 grep -E smb nmb root@linux:/# Complete current smb.conf configuration I use to make the Brother Printer DCP 1610W accesible via network share is here This section needs updating as you can setup print server via samba print sharing just by uploading drivers. When printing to windows printers in an NT domain using SMB the Device URI should use similar to: 11 / 17

12 This allows Samba to authenticate against a domain controller for acces to the printer queue. In my case as you can see in below smb.conf configuration I've configured Samba security = share which will allow anyone to access the samba server without authentication so you can omit username:password@ part One good way to determine the printername (in case you are not sure of) is to use smbclient command line tool. computername refers to the name of the machine that shares the printer: smbclient -L copmputername computername is the name of the samba server machine or its IP address E.g. hipo@linux:~$ smbclient -L // / Enter Attitude's password: Domain=[WORKGROUP] OS=[Unix] Server=[Samba 3.5.6] Sharename Type Comment print$ Disk Printer Drivers IPC$ IPC IPC Service (pcfreak server) DCP1610W Printer DCP1610W Domain=[WORKGROUP] OS=[Unix] Server=[Samba 3.5.6] 12 / 17

13 Server Comment PCFREAK pcfreak server Workgroup Master WORKGROUP WORKGROUP? Walking in Light with Christ - Faith, Computing, Diary Check the ouput for entries of Type "Printer": The resulting (Linux / Mac OS) Samba Share access URL from the output above would be smb:// /dcp1610w 8. Adding Printer to your Windows machines to enable actual Remote Samba Sharing printing Assuming you already know the Printer share name, here is what I needed to do to have the Printer Added on each of Windows Desktop PCs and Notebooks: Control Panel -> Devices and Printers -> Add a printer -> (Add a Network wireless or bluetooth printer) Then instead of Searching the printer to click on: 13 / 17

14 The printer that I wasn't listed Then type in the URL or IP (as in my case) leading to the printer as you see in below screenshot: 14 / 17

15 9. Printer Samba Sharing Using Macintosh notebook as the Client and Debian as the Server 1. Assuming you have cups to set up the printer on Debian as described above. 2. On the Mac (OS X 10.4+) start Print and Fax from System Preferences. Use the + button to add a printer. 3. Look first in the "Default" tab. If the automagic printer-sharing has worked, and your Mac is connected to the local network properly, then the Debian-based printer should already be visible in the list. Just select it and use the recommended print driver. If you face problems you can try to play with Gutenprint Printer drivers to make it printing. 4. If your printer is not visible in the Default tab, then try adding it on the "IP" tab. 15 / 17

16 Pick IPP as the protocol, give the plain IP address of the server in the address box (in my case that's , and in the Queue box put "printers/dcp1610w" Put whatever helps you identify the printer in the Name and Location boxes (fields), and choose a printer driver than matches Brother DCP1610W or with another printer installed whatever you used to set up the printer on Debian. Finally Pray that God help you to make it work and press the Add button. If you prayed honestly and repenting for your sins perhaps you will have mercy and it will work, of course if not try to research online on how to fix it further by God's grace. Note that making printing work on Mac is a little bit of tricky and it might cause you some extra effort / nerves to complete. 10. Some other Useful maintanance commands you might need in future CUPS Printer queue jobs maintance For displaying or setting print queue options and defaults: lpoptions -p -l Stopping and starting print queues. Acceptance and rejection of jobs sent to a destination: cupsdisable cupsenable cupsaccept cupsreject To Cancel all jobs on a destination and additionally delete job data files: cancel -a cancel -a -x 16 / 17

17 Powered by TCPDF ( That's all folks, Thanks God the printer should be working. Enjoy!? Walking in Light with Christ - Faith, Computing, Diary 17 / 17

Configuring and Managing WAAS Print Services

Configuring and Managing WAAS Print Services 13 CHAPTER This chapter describes how to configure and manage the WAAS print services feature that allows Edge WAEs to function as print servers in your branch offices. Note Throughout this chapter, the

More information

Configuring and Managing WAAS Legacy Print Services

Configuring and Managing WAAS Legacy Print Services 13 CHAPTER Configuring and Managing WAAS Legacy Print Services This chapter describes how to configure and manage the WAAS legacy print services feature that allows WAEs to function as print servers in

More information

Install TeamViewer on latest Debian, Ubuntu, Fedora, CentOS Linux quick how to

Install TeamViewer on latest Debian, Ubuntu, Fedora, CentOS Linux quick how to Install TeamViewer on latest Debian, Ubuntu, Fedora, CentOS Linux quick how to Author : admin If you're a sysadmin who uses GNU / Linux as a Desktop as me you will certainly need to have TeamViewer installed

More information

Installing Your Multifunction to Your Network for the First Time

Installing Your Multifunction to Your Network for the First Time Installing Your Multifunction to Your Network for the First Time PIXMA MX522 Macintosh OS 1 Installing Your Multifunction to Your Network for the First Time PIXMA MX522 Macintosh OS Preparing to Connect

More information

Printer Configuration of Apple Mac OS X 10.2, 10.3, and 10.4

Printer Configuration of Apple Mac OS X 10.2, 10.3, and 10.4 Printer Configuration of Apple Mac OS X 10.2, 10.3, and 10.4 For FPS-1031 FPS-1032 FPS-1033 WPS-1133 1.Open Macintosh HD on the Desktop, and click Applications. 2.Click Utilities. 3.Click Print Center.

More information

Install and Configure Samba - CentOS 7

Install and Configure Samba - CentOS 7 CentOS 7 Samba Guide Page 1 of 11 Install and Configure Samba - CentOS 7 What is Samba and why should I use it? Samba is a service that allows Linux machines to access and share files, folders and printers

More information

Wireless and Dorm Printing Overview

Wireless and Dorm Printing Overview Wireless and Dorm Printing Overview Updated: 2/1/2009 IMPORTANT: IPP printing is not supported In order for wireless and dorm users to successfully print to print queues installed on a GoPrint system,

More information

LevelOne FPS-9021/FPS User Manual. Mini Printer Server w/parallel (USB2.0) Port V

LevelOne FPS-9021/FPS User Manual. Mini Printer Server w/parallel (USB2.0) Port V LevelOne FPS-9021/FPS-9022 Mini Printer Server w/parallel (USB2.0) Port User Manual V1.0.0-0601 CONTENTS 1. INTRODUCTION...1 1.1 Product Introduction... 2 1.2 Product Package... 3 1.3 Network Printing

More information

Installing Your Multifunction to Your Network for the First Time

Installing Your Multifunction to Your Network for the First Time Installing Your Multifunction to Your Network for the First Time PIXMA MG5420 Macintosh OS 1 Installing Your Multifunction to Your Network for the First Time PIXMA MG5420 Macintosh OS Preparing to Connect

More information

Installing Your Multifunction to Your Network for the First Time

Installing Your Multifunction to Your Network for the First Time Installing Your Multifunction to Your Network for the First Time PIXMA MG4220 Macintosh OS 1 Installing Your Multifunction to Your Network for the First Time PIXMA MG4220 Macintosh OS Preparing to Connect

More information

Getting Your Multifunction Back On Your Network After A Router Or Network Change

Getting Your Multifunction Back On Your Network After A Router Or Network Change Getting Your Multifunction Back On Your Network After A Router Or Network Change PIXMA MG4220 Macintosh OS 1 Information Important If any of the following situations exist You have replaced your Router

More information

1 Installation 2 "Add New Printer"... Window 3 "Device for" Window "Device URI for"... Window. 7 Specify Printer... Model

1 Installation 2 Add New Printer... Window 3 Device for Window Device URI for... Window. 7 Specify Printer... Model Contents I Table of Contents Part I Document Overview 2 Part II Linux Installation Options 3 Part III CUPS Installation 4 1 Installation... 4 2 "Add New Printer"... Window 6 3 "Device for" Window... 6

More information

Installing Virtualbox Guest Additions Vboxadditions on CentOS 7, Fedora 19 / 20 and RHEL 6.5 / 5.10 on Windows host

Installing Virtualbox Guest Additions Vboxadditions on CentOS 7, Fedora 19 / 20 and RHEL 6.5 / 5.10 on Windows host Installing Virtualbox Guest Additions Vboxadditions on CentOS 7, Fedora 19 / 20 and RHEL 6.5 / 5.10 on Windows host Author : admin If you decided to use Redhat based Linux distribution inside Virtualbox

More information

Setting Up SAMBA. And the response was: salmonberry samba sawtimber scramble. Thus, the name Samba was born.

Setting Up SAMBA. And the response was: salmonberry samba sawtimber scramble. Thus, the name Samba was born. Setting Up SAMBA Samba is the brainchild of Andrew Tridgell who currently heads the Samba development team from his home of Canberra, Australia. The project was born in 1991 when Andrew created a fileserver

More information

Lab #10: Using Linux with Microsoft Windows

Lab #10: Using Linux with Microsoft Windows CTEC1863/2017F Lab #10 Samba Page 1 of 11 Lab #10: Using Linux with Microsoft Windows In this lab, we turn Linux into a Microsoft Windows network server using Samba, "the free SMB and CIFS client and server

More information

JMS USB 2.0 Hi-Speed-Port MFP Server

JMS USB 2.0 Hi-Speed-Port MFP Server JMS-202 2 USB 2.0 Hi-Speed-Port MFP Server User s Manual 1 Table of Contents CHAPTER 1 INTRODUCTION...5 1.1 About this Manual...5 1.2 Customer Support...5 CHAPTER 2 PRODUCT OVERVIEW...6 2.1 Package Contents...6

More information

CUPS Software Performance Specification CUPS SPS 1.1. Easy Software Products Copyright , All Rights Reserved

CUPS Software Performance Specification CUPS SPS 1.1. Easy Software Products Copyright , All Rights Reserved CUPS Software Performance Specification CUPS SPS 1.1 Easy Software Products Copyright 1997 2005, All Rights Reserved CUPS Software Performance Specification Table of Contents 1 Scope...1 1.1 Identification...1

More information

Session 5540 Linux Printing

Session 5540 Linux Printing Session 5540 Linux Printing Adam Thornton Sine Nomine Associates 25 July 2001 How do I print in Linux for System/390? Linux does not yet have any drivers for channelattached printers You could always write

More information

Installing the Windows Custom PostScript or PCL Printer Driver

Installing the Windows Custom PostScript or PCL Printer Driver Installing the Windows Custom PostScript or PCL Printer Driver This ReadMe file contains the instructions for installing the Custom PostScript or PCL Printer Driver on Windows systems. The Custom PostScript

More information

One Bay SATA/IDE Turbo NAS User Manual

One Bay SATA/IDE Turbo NAS User Manual One Bay SATA/IDE Turbo NAS User Manual Revision: v0117 Date: 2009/07/23 For firmware version v1.17 Table of Contents 1. Introduction... 3 1.1. Key Features... 3 1.2. Network Environment... 3 2. Hardware

More information

Fiery PRO 80 /S450 65C-KM Color Server. Printing from Windows

Fiery PRO 80 /S450 65C-KM Color Server. Printing from Windows Fiery PRO 80 /S450 65C-KM Color Server Printing from Windows 2007 Electronics for Imaging, Inc. The information in this publication is covered under Legal Notices for this product. 45067315 01 November

More information

File services and printing services for networks

File services and printing services for networks The TISIP Foundation File services and printing services for networks Tor Halsan 17.01.2012 This material is written for the course «Linux Server Management» Resume: In this lesson, we are using a Linux

More information

Turn your Windows PC / notebook to Wireless Router with My Wifi Router 3.0 and TP-Link TL-WN722N

Turn your Windows PC / notebook to Wireless Router with My Wifi Router 3.0 and TP-Link TL-WN722N Turn your Windows PC / notebook to Wireless Router with My Wifi Router 3.0 and TP-Link TL-WN722N Author : admin I've been to home of my wife's parents and for this Christmas, they have received second

More information

CHAPTER1 INTRODUCTION...

CHAPTER1 INTRODUCTION... 1 Table of Contents CHAPTER1 INTRODUCTION... 5 1.1 About 3 Models Described in this Manual... 5 1.2 Customer Support... 5 CHAPTER2 PRODUCT OVERVIEW... 6 2.1 Package Contents... 6 2.2 Product CD... 6 2.2.1

More information

Grandstream Networks, Inc. Client Isolation Configuration Guide

Grandstream Networks, Inc. Client Isolation Configuration Guide Grandstream Networks, Inc. Table of Contents INTRODUCTION... 3 CLIENT ISOLATION MODES... 4 CLIENT ISOLATION CONFIGURATION... 5 Client Isolation - Internet Mode... 5 Client Isolation - Radio Mode... 7 Client

More information

TOSHIBA GA Printing from Windows

TOSHIBA GA Printing from Windows TOSHIBA GA-1211 Printing from Windows 2008 Electronics for Imaging, Inc. The information in this publication is covered under Legal Notices for this product. 45075925 24 October 2008 CONTENTS 3 CONTENTS

More information

10/100Mbps 2Port USB2.0 MFP Server

10/100Mbps 2Port USB2.0 MFP Server 10/100Mbps 2Port USB2.0 MFP Server Mini-MFP Quick Installation Guide English Ver.1.0 Quick Installation Guide CONTENTS STEP 1 / Mbps Port USB MFP Server Introduction Package Contents OS Requirements Physical

More information

Viewing JPEG,GIF and PNG in ASCII with cacaview on GNU / Linux - Review on caca-utils text mode graphics utilities

Viewing JPEG,GIF and PNG in ASCII with cacaview on GNU / Linux - Review on caca-utils text mode graphics utilities Viewing JPEG,GIF and PNG in ASCII with cacaview on GNU / Linux - Review on caca-utils text mode graphics utilities Author : admin Probably, many don't know that it is possible to view normal graphical

More information

Print Server. User s Manual. Version: 1.0 (July, 2005)

Print Server. User s Manual. Version: 1.0 (July, 2005) Print Server User s Manual Version: 1.0 (July, 2005) COPYRIGHT Copyright 2005/2006 by this company. All rights reserved. No part of this publication may be reproduced, transmitted, transcribed, stored

More information

Hp Printer Can T Delete Print Job Windows 7

Hp Printer Can T Delete Print Job Windows 7 Hp Printer Can T Delete Print Job Windows 7 The printer cannot print from the Mac computer because a print job is stuck in the print The Delete Job button is grayed out and does nothing when clicked. Image:

More information

Print Server Setup Guide (NF1ADV)

Print Server Setup Guide (NF1ADV) Print Server Setup Guide (NF1ADV) Print Server Setup for the NF1ADV This set of print server setup instructions is intended for use with printers connecting with a USB cable connection being plugged into

More information

Print Server User s Manual Version: 2.0 (January, 2006)

Print Server User s Manual Version: 2.0 (January, 2006) Print Server User s Manual Version: 2.0 (January, 2006) COPYRIGHT Copyright 2006/2007 by this company. All rights reserved. No part of this publication may be reproduced, transmitted, transcribed, stored

More information

User Guide NAS 3.0 Adapter (NAS30U2)

User Guide NAS 3.0 Adapter (NAS30U2) T E C H N O L O G I E S User Guide NAS 3.0 Adapter (NAS30U2) www.addonics.com v5.1.11 Technical Support If you need any assistance to get your unit functioning properly, please have your product information

More information

Variable Data Printing. Unix and Linux Operating Systems

Variable Data Printing. Unix and Linux Operating Systems Variable Data Printing Unix and Linux Operating Systems Configuring Unix & Linux The Unix and Linux capture method is referred to as Inbound Connectivity. Inbound Connectivity is the process of redirecting

More information

How to add support for DJVU file format on M$ Windows, Mac, GNU / Linux and FreeBSD

How to add support for DJVU file format on M$ Windows, Mac, GNU / Linux and FreeBSD How to add support for DJVU file format on M$ Windows, Mac, GNU / Linux and FreeBSD Author : admin By default there is no way to see what is inside a DJVU formatted document on both Windows and Linux OS

More information

Massey University Follow Me Printer Setup for Linux systems

Massey University Follow Me Printer Setup for Linux systems Massey University Follow Me Printer Setup for Linux systems RedHat and Debian based systems Requirements You must have an active Massey network account, i.e. you should already be able to log onto the

More information

Software Setup Guide

Software Setup Guide Software Setup Guide This manual explains how to install and configure the software that allows the machine to be used as a printer or scanner for a computer. To obtain the software described in this manual,

More information

User Guide. NP Port USB Print - Scanner - Storage Server

User Guide. NP Port USB Print - Scanner - Storage Server User Guide NP3680 2-Port USB Print - Scanner - Storage Server Contents Chapter1 Introduction... 4 1.1 About this Manual... 4 1.2 Customer Support... 4 Chapter2 Product Overview... 5 2.1 Package Contents...

More information

Fiery Network Controller for DocuColor 5065 SERVER & CONTROLLER SOLUTIONS. Printing from Windows

Fiery Network Controller for DocuColor 5065 SERVER & CONTROLLER SOLUTIONS. Printing from Windows Fiery Network Controller for DocuColor 5065 SERVER & CONTROLLER SOLUTIONS Printing from Windows 2005 Electronics for Imaging, Inc. The information in this publication is covered under Legal Notices for

More information

Print Server. User s Manual

Print Server. User s Manual Print Server User s Manual 1 Contents 1. INTRODUCTION...1 1.1 Product Introduction... 2 1.2 Product Package... 3 1.3 Network Printing Architecture... 4 1.3.1 Print Server Network Functions... 5 1.3.2 Network

More information

How to install Microsoft Windows XP SP3 on Debian GNU / Linux Squeeze

How to install Microsoft Windows XP SP3 on Debian GNU / Linux Squeeze How to install Microsoft Windows XP SP3 on Debian GNU / Linux Squeeze Author : admin I have never did a proper install of Windows XP on Debian before hand. Even though I experimented once long time ago.

More information

Print Server. User s Manual. Rev. 01 (April, 2004) Made In Taiwan

Print Server. User s Manual. Rev. 01 (April, 2004) Made In Taiwan Print Server User s Manual Rev. 01 (April, 2004) Made In Taiwan TABLE OF CONTENTS ABOUT THIS GUIDE... 4 INTRODUCTION... 5 PACKAGE CONTENTS... 6 SYSTEM REQUIREMENTS... 6 GENERAL FEATURES... 7 PRODUCT VIEW...

More information

Downloaded from manuals search engine

Downloaded from   manuals search engine Table of Contents CHAPTER 1 INTRODUCTION... 1 Broadband Router Features... 1 Package Contents... 3 Physical Details... 4 CHAPTER 2 INSTALLATION... 6 Requirements... 6 Procedure... 6 CHAPTER 3 SETUP...

More information

Technical Paper: Zebra ZXP Series 3 Linux Printer Driver

Technical Paper: Zebra ZXP Series 3 Linux Printer Driver Technical Paper: Zebra ZXP Series 3 Linux Printer Driver Contents Zebra ZXP Series 3 Printer Driver for Linux... 3 Introduction... 3 Purpose of the Document... 3 System Environment... 3 History of Common

More information

Fiery EXP50 Color Server. Printing from Windows

Fiery EXP50 Color Server. Printing from Windows Fiery EXP50 Color Server Printing from Windows 2006 Electronics for Imaging, Inc. The information in this publication is covered under Legal Notices for this product. 45055357 24 March 2006 CONTENTS 3

More information

LevelOne FPS port USB/MFP Server. User`s Manual

LevelOne FPS port USB/MFP Server. User`s Manual LevelOne FPS-3003 2-port USB/MFP Server User`s Manual Table of Contents CHAPTER1 INTRODUCTION...5 1.1 About this Manual...5 1.2 Support Services...5 CHAPTER2 PRODUCT OVERVIEW...6 2.1 Package Contents...6

More information

MULTIFUNCTIONAL DIGITAL COLOR SYSTEMS. Software Installation Guide ES9466 MFP/ES9476 MFP

MULTIFUNCTIONAL DIGITAL COLOR SYSTEMS. Software Installation Guide ES9466 MFP/ES9476 MFP MULTIFUNCTIONAL DIGITAL COLOR SYSTEMS Software Installation Guide ES9466 MFP/ES9476 MFP 2016 Oki Data Corporation All rights reserved Under the copyright laws, this manual cannot be reproduced in any form

More information

Network-based File Sharing (1)

Network-based File Sharing (1) Samba Let s Dance! Network-based File Sharing (1) NFS (UNIX-based) mountd is responsible for mount request nfsd and nfsiod Based on RPC CIFS (Microsoft) Common Internet File System 網路芳鄰 SMB (Server Message

More information

EveryonePrint. Mobile Gateway 4.2. Installation Guide. EveryonePrint Mobile Gateway Installation Guide Page 1 of 30

EveryonePrint. Mobile Gateway 4.2. Installation Guide. EveryonePrint Mobile Gateway Installation Guide Page 1 of 30 EveryonePrint Mobile Gateway 4.2 Installation Guide EveryonePrint Mobile Gateway Installation Guide 2016.09.01 Page 1 of 30 1. Introduction... 3 1.1 Multiple networks (using Multicast Bonjour AirPrint)...

More information

Editting binary files in console and GUI on FreeBSD and Linux

Editting binary files in console and GUI on FreeBSD and Linux Walking in Light with Christ - Faith, Computing, Diary Editting binary files in console and GUI on FreeBSD and Linux Author : admin I've recently wanted to edit one binary file because there was compiled

More information

Setting Up Physics & Astronomy Department Printers

Setting Up Physics & Astronomy Department Printers Setting Up Physics & Astronomy Department Printers In order to print to one of the various HP network printers and Ricoh copiers in the Department of Physics & Astronomy, that printer needs to be installed

More information

Getting Your Multifunction Back On Your Network After A Router Or Network Change

Getting Your Multifunction Back On Your Network After A Router Or Network Change Getting Your Multifunction Back On Your Network After A Router Or Network Change PIXMA MX892 Windows OS 1 Information Important If any of the following situations exist You have replaced your Router or

More information

LevelOne FPS-9023/WPS User Manual. Wired/Wireless Printer Server w/multi - Port V

LevelOne FPS-9023/WPS User Manual. Wired/Wireless Printer Server w/multi - Port V LevelOne FPS-9023/WPS-9123 Wired/Wireless Printer Server w/multi - Port User Manual V1.0.0-0606 CONTENTS 1. INTRODUCTION... 1 1.1 PRODUCT INTRODUCTION... 2 1.2 PRODUCT PACKAGE... 3 1.3 NETWORK PRINTING

More information

Printing on Client LINUX. Todd Fujinaka. October 2006

Printing on Client LINUX. Todd Fujinaka. October 2006 Printing on Client LINUX Todd Fujinaka October 2006 Purpose Examine state of Desktop Linux printing as of 8/2006 Limit scope of project to desktop printing examine popular home user/small office printers

More information

Network Quick Install Cards Document Centre 490/480/470/460 ST

Network Quick Install Cards Document Centre 490/480/470/460 ST Network Quick Install Cards Document Centre 490/480/470/460 ST This package contains Quick Install Cards that will help you connect the Document Centre to your network and install E-mail. Please read and

More information

Installing driver over the network

Installing driver over the network Installing driver over the network Command- line Definition Description Command- line Definition Description /a or /A /n or /N /nd or /ND Specifies

More information

CX1145 MFP. Network Administration Guide , Rev. 1.0

CX1145 MFP. Network Administration Guide , Rev. 1.0 CX1145 MFP Network Administration Guide 59315601, Rev. 1.0 TRADEMARKS AND COPYRIGHT Trademarks The official name of Windows 98 is Microsoft Windows 98 Operating System. The official name of Windows Me

More information

Fast Ethernet Print Server 1 Parallel, 2 USB

Fast Ethernet Print Server 1 Parallel, 2 USB Fast Ethernet Print Server 1 Parallel, 2 USB User s Manual Rev. 01 (Nov, 2005) Made In Taiwan TABLE OF CONTENTS ABOUT THIS GUIDE... 4 INTRODUCTION... 5 PACKAGE CONTENTS... 6 SYSTEM REQUIREMENTS... 6 GENERAL

More information

Mega 100WR ADSL 2+ Router - Easy Start

Mega 100WR ADSL 2+ Router - Easy Start Mega 100WR ADSL 2+ Router - Easy Start Mega 100WR ADSL 2+ Router - Easy Start Chapter 1 Introduction Thank you for purchasing a Mega 100WR Router. This Easy start guide is a complete guide to configuring

More information

Xerox EX136 Print Server Powered by Fiery for the Xerox D136 Copier-Printer. Printing

Xerox EX136 Print Server Powered by Fiery for the Xerox D136 Copier-Printer. Printing Xerox EX136 Print Server Powered by Fiery for the Xerox D136 Copier-Printer Printing 2013 Electronics For Imaging. The information in this publication is covered under Legal Notices for this product. 45120530

More information

Installing Your Multifunction to Your Network for the First Time

Installing Your Multifunction to Your Network for the First Time Installing Your Multifunction to Your Network for the First Time PIXMA MG5320 Macintosh OS 1 Installing Your Multifunction to Your Network for the First Time PIXMA MG5320 Macintosh OS Preparing to Connect

More information

Installing Your Multifunction to Your Network for the First Time

Installing Your Multifunction to Your Network for the First Time Installing Your Multifunction to Your Network for the First Time PIXMA MX722 Windows OS 1 Installing Your Multifunction to Your Network for the First Time PIXMA MX722 Windows OS Preparing to Connect My

More information

Color Controller E-42B. Printing

Color Controller E-42B. Printing Color Controller E-42B Printing 2013 Electronics For Imaging. The information in this publication is covered under Legal Notices for this product. 45116081 15 April 2013 CONTENTS 3 CONTENTS INTRODUCTION

More information

Installing QuickBooks Enterprise Solutions Database Manager On Different Linux Servers

Installing QuickBooks Enterprise Solutions Database Manager On Different Linux Servers Installing QuickBooks Enterprise Solutions Database Manager On Different Linux Servers Contents QuickBooks Enterprise Solutions and Linux... 3 Audience of This Guide... 3 What is the Linux Database Manager

More information

USB 2.0 Print Server. User s Manual. Rev. 01 (Jan, 2004) Made In Taiwan

USB 2.0 Print Server. User s Manual. Rev. 01 (Jan, 2004) Made In Taiwan USB 2.0 Print Server User s Manual Rev. 01 (Jan, 2004) Made In Taiwan TABLE OF CONTENTS ABOUT THIS GUIDE... 4 INTRODUCTION... 5 PACKAGE CONTENTS... 6 SYSTEM REQUIREMENTS... 6 GENERAL FEATURES... 7 PRODUCT

More information

Table of Contents. Keyspan:USB Server - User Manual

Table of Contents. Keyspan:USB Server - User Manual Table of Contents 1 Introduction Compatible USB Devices Connectivity to USB Devices Connectivity to Network Requirements What's Inside The Package 2 Installation Instructions Installing the USB Server

More information

LASER PRINTER. Software Setup Guide BEFORE INSTALLING THE SOFTWARE SETUP IN A WINDOWS ENVIRONMENT SETUP IN A MACINTOSH ENVIRONMENT TROUBLESHOOTING

LASER PRINTER. Software Setup Guide BEFORE INSTALLING THE SOFTWARE SETUP IN A WINDOWS ENVIRONMENT SETUP IN A MACINTOSH ENVIRONMENT TROUBLESHOOTING MODEL: MX-B400P LASER PRINTER Software Setup Guide BEFORE INSTALLING THE SOFTWARE SETUP IN A WINDOWS ENVIRONMENT SETUP IN A MACINTOSH ENVIRONMENT TROUBLESHOOTING Keep this manual close at hand for reference

More information

Network Guide. IMPORTANT: Read this manual carefully before using your printer. Save this manual for future reference. ENG

Network Guide. IMPORTANT: Read this manual carefully before using your printer. Save this manual for future reference. ENG Network Guide IMPORTANT: Read this manual carefully before using your printer. Save this manual for future reference. ENG Network Guide How This Manual Is Organized Chapter 1 Before You Start Chapter 2

More information

Bridge Cable User s Guide

Bridge Cable User s Guide Bridge Cable User s Guide Table of Contents Overview -------------------------------------------------------------------- 2 Driver Installation --------------------------------------------------------

More information

Contents 1 INITIAL CONFIGURATION BEFORE CHANGING THE CONFIGURATION NETWORK SETUP PROCEDURE... 3

Contents 1 INITIAL CONFIGURATION BEFORE CHANGING THE CONFIGURATION NETWORK SETUP PROCEDURE... 3 Network Guide Imation Matchprint Professional Server Contents 1 INITIAL CONFIGURATION... 2 2 BEFORE CHANGING THE CONFIGURATION... 2 3 NETWORK SETUP PROCEDURE... 3 4 ADDING SPOOLER AND HOT FOLDERS FOR NETWORK

More information

Getting Your Multifunction Back On Your Network After A Router Or Network Change

Getting Your Multifunction Back On Your Network After A Router Or Network Change Getting Your Multifunction Back On Your Network After A Router Or Network Change PIXMA MG6320 Windows OS 1 Information Important If any of the following situations exist You have replaced your Router or

More information

CIS 192 Linux Lab Exercise

CIS 192 Linux Lab Exercise CIS 192 Linux Lab Exercise Lab 8: Samba Spring 2009 Lab 8: Samba The purpose of this lab is to share files among Windows and Linux hosts on a common network. The goal is to browse directories on the Linux

More information

Drupal Command Line Instructions Windows 7 List All Printers

Drupal Command Line Instructions Windows 7 List All Printers Drupal Command Line Instructions Windows 7 List All Printers We won't show you that ad again. Can I configure the Ubuntu print server section of the tutorial via Terminal instead of via GUI. All what you

More information

Use Error Code 43 Mac Os X Copy

Use Error Code 43 Mac Os X Copy Use Error Code 43 Mac Os X Copy Error Code 36 in Mac Finder resolved with OS X dot_clean tool. On some rare with no error code. For example, if copying ~/Documents/FileBackups/ is the problematic directory,

More information

Getting Your Multifunction Back On Your Network After A Router Or Network Change

Getting Your Multifunction Back On Your Network After A Router Or Network Change Getting Your Multifunction Back On Your Network After A Router Or Network Change PIXMA MX512 Windows OS 1 Information Important If any of the following situations exist You have replaced your Router or

More information

Xlpd User Guide. The Powerful LPD Server for Windows. NetSarang Computer Inc.

Xlpd User Guide. The Powerful LPD Server for Windows. NetSarang Computer Inc. Xlpd User Guide The Powerful LPD Server for Windows NetSarang Computer Inc. Copyright 2015 NetSarang Computer, Inc. All rights reserved. Xlpd Manual This software and various documents have been produced

More information

Printopia 3 ENTERPRISE ADMINISTRATION GUIDE. Revision 10 October 9,

Printopia 3 ENTERPRISE ADMINISTRATION GUIDE. Revision 10 October 9, Printopia 3 ENTERPRISE ADMINISTRATION GUIDE Revision 10 October 9, 2017 www.decisivetactics.com/printopiapro Legal Copyright 2012-2017 Decisive Tactics, Inc. Printopia is a registered trademark of Decisive

More information

Color Controller E-41A. Customer User Addendum

Color Controller E-41A. Customer User Addendum Color Controller E-41A Customer User Addendum 2014 Electronics For Imaging. The information in this publication is covered under Legal Notices for this product. 45125308 26 February 2014 CONTENTS 3 CONTENTS

More information

LevelOne Broadband Routers

LevelOne Broadband Routers LevelOne Broadband Routers FBR-1100TX FBR-1400TX FBR-1401TX FBR-1700TX User's Guide TABLE OF CONTENTS CHAPTER 1 INTRODUCTION... 1 Features of your LevelOne Broadband Router... 1 Package Contents... 4

More information

How to disable ACPI on productive Linux servers to decrease kernel panics and increase CPU fan lifespan

How to disable ACPI on productive Linux servers to decrease kernel panics and increase CPU fan lifespan How to disable ACPI on productive Linux servers to decrease kernel panics and increase CPU fan lifespan Author : admin Why would anyone disable ACPI support on a server machine?? Well ACPI support kernel

More information

LevelOne. User's Guide. Broadband Router FBR-1402TX FBR-1403TX

LevelOne. User's Guide. Broadband Router FBR-1402TX FBR-1403TX LevelOne Broadband Router FBR-1402TX FBR-1403TX User's Guide Table of Contents CHAPTER 1 INTRODUCTION... 1 LevelOne Broadband Router Features... 1 Package Contents... 3 Physical Details...4 CHAPTER 2 INSTALLATION...

More information

RafKill Raptor Free Software (Open Source) clone for GNU/Linux

RafKill Raptor Free Software (Open Source) clone for GNU/Linux RafKill Raptor Free Software (Open Source) clone for GNU/Linux Author : admin I've earlier blogged on playing Apogee's Raptor Shadows of Death arcade on GNU / Linux with dosbox All the old school raptor

More information

How to install Linux or *BSD to USB flash drive (memory stick) using Debian GNU / Linux

How to install Linux or *BSD to USB flash drive (memory stick) using Debian GNU / Linux How to install Linux or *BSD to USB flash drive (memory stick) using Debian GNU / Linux Author : admin UNetbootin is a nice easy to use Free Software Universal mutli OS program that makes creation of Bootable

More information

Getting Your Multifunction Back On Your Network After A Router Or Network Change. PIXMA MX722 Mac OS

Getting Your Multifunction Back On Your Network After A Router Or Network Change. PIXMA MX722 Mac OS Getting Your Multifunction Back On Your Network After A Router Or Network Change PIXMA MX722 Mac OS 1 Connecting to the Network If any of the following situations exist You have replaced your Router or

More information

802.11g Wireless LAN MFP Server

802.11g Wireless LAN MFP Server 802.11g Wireless LAN MFP Server Quick Installation Guide Version: 1.0 (Jun. 2009) 1. Product Introduction Thank you for purchasing and using our 802.11g Wireless LAN MFP server. This MFP server allows

More information

BEFORE INSTALLING THE SOFTWARE SETUP IN A WINDOWS ENVIRONMENT SETUP IN A MACINTOSH ENVIRONMENT TROUBLESHOOTING

BEFORE INSTALLING THE SOFTWARE SETUP IN A WINDOWS ENVIRONMENT SETUP IN A MACINTOSH ENVIRONMENT TROUBLESHOOTING Software Setup Guide BEFORE INSTALLING THE SOFTWARE SETUP IN A WINDOWS ENVIRONMENT SETUP IN A MACINTOSH ENVIRONMENT TROUBLESHOOTING Thank you for purchasing this product. This manual explains how to install

More information

Mac OS X Server Print Service Administration. For Version 10.3 or Later

Mac OS X Server Print Service Administration. For Version 10.3 or Later Mac OS X Server Print Service Administration For Version 10.3 or Later apple Apple Computer, Inc. 2003 Apple Computer, Inc. All rights reserved. The owner or authorized user of a valid copy of Mac OS X

More information

Installing Your Multifunction to Your Network for the First Time

Installing Your Multifunction to Your Network for the First Time Installing Your Multifunction to Your Network for the First Time PIXMA MG6120 Mac OS 1 Installing Your Multifunction to Your Network for the First Time PIXMA MG6120 Mac OS Preparing to Connect My Multifunction

More information

Direct Attached Fast Ethernet Print Server

Direct Attached Fast Ethernet Print Server Direct Attached Fast Ethernet Print Server FPS-1001 User s Manual Copyright (C) 2004 PLANET Technology Corp. All rights reserved. The products and programs described in this User s Manual are licensed

More information

Virtualization with colinux

Virtualization with colinux Using, installing, and configuring Cooperative Linux Level: Introductory M. Tim Jones (mtj@mtjones.com), Consultant Engineer, Emulex 31 Mar 2007 Virtualization with VmWare, Xen, and Kernel-based Virtual

More information

Web Server rpm. Web Server. #rpm q apache apache sis. package apache not installed CD-ROM

Web Server rpm. Web Server. #rpm q apache apache sis. package apache not installed CD-ROM 7 Server Web Server Web Server rpm #rpm q apache apache-1.3.20-16+sis package apache not installed CD-ROM Linux Redhat, Linux SiS Linux rpm I apache-1.3.20-16+sis /etc/httpd/conf/httpd.conf ServerRoot

More information

Enabling and Using EtherTalk for Mac OS 9.x. If you use EtherTalk, Macintosh computers do not require IP addresses.

Enabling and Using EtherTalk for Mac OS 9.x. If you use EtherTalk, Macintosh computers do not require IP addresses. Macintosh This topic includes: "Requirements" on page 3-29 "Quick CD-ROM Install Steps" on page 3-29 "Enabling and Using EtherTalk for Mac OS 9.x" on page 3-29 "Enabling and Using TCP/IP for Mac OS 9.x"

More information

Printing with Windows 98SE/Me (continued)

Printing with Windows 98SE/Me (continued) Printing with Windows 98SE/Me (continued) Select your DP-311P wireless print server 192.168.0.10 Click OK HP LaserJet Series II Click Apply > OK You have completed setting up your printer in Win 98SE/Me!

More information

CUPS Software Version Description CUPS SVD 1.1. Easy Software Products Copyright , All Rights Reserved

CUPS Software Version Description CUPS SVD 1.1. Easy Software Products Copyright , All Rights Reserved CUPS Software Version Description CUPS SVD 1.1 Easy Software Products Copyright 1997 2005, All Rights Reserved CUPS Software Version Description Table of Contents 1 Scope...1 1.1 Identification...1 1.2

More information

How to configure VIVACOM 3g USB ( internet ) modem HUAWEI Mobile broadband E173 on Debian and Ubuntu GNU / Linux

How to configure VIVACOM 3g USB ( internet ) modem HUAWEI Mobile broadband E173 on Debian and Ubuntu GNU / Linux How to configure VIVACOM 3g USB ( internet ) modem HUAWEI Mobile broadband E173 on Debian and Ubuntu GNU / Linux Author : admin I've been given a HUAWEI Mobile Broadband E173 USB 3g model. The USB modem

More information

BYOD. Bring your own device. ICT Support Office

BYOD. Bring your own device. ICT Support Office BYOD Bring your own device ICT Support Office Bring Your Own Device (BYOD) User Guide Table of Contents BYOD General Information... 2 a) What devices have been tested (Operating System / Devices)?... 2

More information

Print Server. User s Manual. Version: 3.0 (July, 2007)

Print Server. User s Manual. Version: 3.0 (July, 2007) Print Server User s Manual Version: 3.0 (July, 2007) COPYRIGHT Copyright 2006/2007 by this company. All rights reserved. No part of this publication may be reproduced, transmitted, transcribed, stored

More information

Howto remote access Windows PC which is behind Vivacom ADSL (Commtrend SmartAX MT882 router) modem with VNC server

Howto remote access Windows PC which is behind Vivacom ADSL (Commtrend SmartAX MT882 router) modem with VNC server Howto remote access Windows PC which is behind Vivacom ADSL (Commtrend SmartAX MT882 router) modem with VNC server Author : admin I had been assigned the not easy task to make a Windows XP Pro which is

More information

P-201/ P-201U Wired Printer Server

P-201/ P-201U Wired Printer Server P-201/ P-201U Wired Printer Server User s Manual COPYRIGHT Copyright 2006/2007 by this company. All rights reserved. No part of this publication may be reproduced, transmitted, transcribed, stored in a

More information

Disable Bluetooth on CentOS / RHEL (Redhat) / Fedora Linux servers - Disable hidd bluetooth devices

Disable Bluetooth on CentOS / RHEL (Redhat) / Fedora Linux servers - Disable hidd bluetooth devices Disable Bluetooth on CentOS / RHEL (Redhat) / Fedora Linux servers - Disable hidd bluetooth devices Author : admin Bluetooth protocol on Linux is nice to have (supported) on Linux Desktop systems to allow

More information