Results 1 to 3 of 3
My friend and I both are running fedora 15 (GNOME desktop) and I want to be able to print to his printer. I have looked on google and everything tells ...
- 10-25-2011 #1Just Joined!
- Join Date
- Nov 2008
- Posts
- 3
Print sharing in Fedora 15 to Fedora 15
My friend and I both are running fedora 15 (GNOME desktop) and I want to be able to print to his printer. I have looked on google and everything tells me how to share with windows and linux. I am new to Linux but so far everything has been very easy to do and I like the way it works. This is the first problem I havent been able to solve quickly on google. I also want to know if the solution will show his printer on my computer, but shared, much like on windows?
Thank you for your help. I have looked on the forums and can't find a post that matches my problem.
- 11-20-2011 #2Just Joined!
- Join Date
- Jul 2006
- Posts
- 5
The printer model and driver support in linux is important if you can post. The setup for IPP, CUPS network sharing, or using something like Avahi/mDNS to advertise the printer are all viable options.
- 11-20-2011 #3Linux Guru
- Join Date
- May 2011
- Posts
- 1,843
I would try to use samba to share the printer. Make sure samba is installed:
If not:Code:rpm -qv samba-common samba
Then, edit the config file:Code:yum install samba-common samba
and look for the printer stuff near the bottom. You'll also need to configure workgroup under the [global] section.Code:vi /etc/samba/smb.conf
Then start/restart the samba server:
You'll need to add a samba user to each side - use the name of an existing Linux system user, e.g.:Code:service smb restart
Then view local shares:Code:smbpasswd -a joeblow
Once both sides are set up, you can view each others shares by replacing localhost with the remote ip address. It is also a good idea to make the ip address resolve to the proper Windows hostname in /etc/hosts. In fact, you may *need* to do that, to make samba happy, I have that prob sometimes.Code:smbclient -U joeblow -L localhost


Reply With Quote