[Bug 58403] Re: adding smb printer difficult on large networks

2008-03-16 Thread Ryan Rawdon
The changes upstream to the printer management software in GNOME made this problem disappear starting in Gutsy and in Hardy as well. Marking it as invalid to close the matter. ** Changed in: gnome-cups-manager (Ubuntu) Status: Incomplete = Invalid -- adding smb printer difficult on

[Bug 58403] Re: adding smb printer difficult on large networks

2007-08-23 Thread Till Kamppeter
Scanning for SMB-shared printers works now very well with system-config- printer. Many problems were solved there. See bug 127152. If you are on Gutsy you should try the newest version (will appear in Gutsy after Tribe 5) from http://www.linux-foundation.org/~till/tmp/ubuntu/gutsy/system-config-

[Bug 58403] Re: adding smb printer difficult on large networks

2007-08-03 Thread Jani Monoses
If system-config-printer replaces gnome-cups-manager in gutsy the fix should be done in that package https://bugs.launchpad.net/ubuntu/+source/system-config- printer/+bug/127152 -- adding smb printer difficult on large networks https://bugs.launchpad.net/bugs/58403 You received this bug

[Bug 58403] Re: adding smb printer difficult on large networks

2007-02-01 Thread Nikolaus Filus
The above command doesn't work for me. I have a small broadband router with an integrated print server: Starting Nmap 4.10 ( http://www.insecure.org/nmap/ ) at 2007-02-01 17:22 CET Interesting ports on 192.168.1.2: Not shown: 1675 closed ports PORTSTATE SERVICE 23/tcp open telnet 80/tcp

[Bug 58403] Re: adding smb printer difficult on large networks

2006-12-20 Thread Ryan Rawdon
the command in the previous comment (for i in `export LC_ALL=C; findsmb 2 /dev/null | egrep '^[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+' | tr -s | cut -f2 -d ' ' | uniq | sort`; do echo $i; echo ---; export LC_ALL=C; smbclient -N -L $i 2 /dev/null | grep Printer; echo; done ) works. I

[Bug 58403] Re: adding smb printer difficult on large networks

2006-11-25 Thread Till Kamppeter
** Changed in: gnome-cups-manager (Ubuntu) Importance: Undecided = Medium -- adding smb printer difficult on large networks https://launchpad.net/bugs/58403 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 58403] Re: adding smb printer difficult on large networks

2006-10-19 Thread Patrice Vetsel
@Till your command line don't work for me because : Patrice == 192.168.1.103 [EMAIL PROTECTED]:~$ smbclient -N -L 192.168.1.103 session request to 192.168.1.103 failed (Called name not present) session request to 192 failed (Called name not present) session request to *SMBSERVER failed (Called

[Bug 58403] Re: adding smb printer difficult on large networks

2006-10-19 Thread Till Kamppeter
So we should use a command line based on Netbios names and not on IPs, like this one for i in `export LC_ALL=C; findsmb 2 /dev/null | egrep '^[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+' | tr -s | cut -f2 -d ' ' | uniq | sort`; do echo $i; echo ---; export LC_ALL=C; smbclient -N -L $i 2

[Bug 58403] Re: adding smb printer difficult on large networks

2006-10-18 Thread Till Kamppeter
gnome-cups-manager is not maintained upstream any more, it is about to be replaced in Edgy+1. See https://features.launchpad.net/distros/ubuntu/+spec/printerdrake To improve the scan for SMB/Windows printers in printerdrake (or any other tool) please cut and paste the following long command line

[Bug 58403] Re: adding smb printer difficult on large networks

2006-10-18 Thread Patrice Vetsel
@Till Kamppeter Please don't use nmblookup in your long command line because in my case it don't work at all to find Name of clients. findsmb has to be used instead of nmblookup In my case, simple windows98se clients sharing printers -- adding smb printer difficult on large networks

[Bug 58403] Re: adding smb printer difficult on large networks

2006-10-18 Thread Till Kamppeter
So for you for i in `export LC_ALL=C; findnmb 2 /dev/null | cut -f 1 -d ' ' | egrep '^[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+' | uniq | sort`; do echo $i; echo ---; export LC_ALL=C; smbclient -N -L $i 2 /dev/null | grep Printer; echo; done works? -- adding smb printer difficult on large

[Bug 58403] Re: adding smb printer difficult on large networks

2006-10-18 Thread Till Kamppeter
Sorry, s/findnmb/findsmb/: for i in `export LC_ALL=C; findsmb 2 /dev/null | cut -f 1 -d ' ' | egrep '^[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+' | uniq | sort`; do echo $i; echo ---; export LC_ALL=C; smbclient -N -L $i 2 /dev/null | grep Printer; echo; done Does this work for you? You really do

[Bug 58403] Re: adding smb printer difficult on large networks

2006-10-18 Thread Ryan Rawdon
I'll test that out once I get to campus in a couple of hours -- adding smb printer difficult on large networks https://launchpad.net/bugs/58403 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 58403] Re: adding smb printer difficult on large networks

2006-10-18 Thread Patrice Vetsel
@Till i suggest : for i in `export LC_ALL=C; findsmb 2 /dev/null | egrep '^[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+' | tr -s | cut -f2 -d ' ' | uniq | sort`; do echo $i; echo ---; export LC_ALL=C; smbclient -N -L $i 2 /dev/null | grep Printer; echo; done result : PATRICE ---

[Bug 58403] Re: adding smb printer difficult on large networks

2006-10-18 Thread Ryan Rawdon
Below is the output from running it on my home laptop. 192.168.0.1 and 192.168.0.10 are linux machines with samba installed, but no actual printers shared. The real test will be when I'm on campus. -- 192.168.0.1 --- print$ Disk Printer Drivers lp

[Bug 58403] Re: adding smb printer difficult on large networks

2006-10-18 Thread Ryan Rawdon
On campus I tried the last two command strings suggested. The output is posted below. I needed to break the second one because it stopped giving output after the first few lines --- begin output [EMAIL PROTECTED]:~$ for i in `export LC_ALL=C; findsmb 2 /dev/null | egrep

[Bug 58403] Re: adding smb printer difficult on large networks

2006-10-17 Thread Ryan Rawdon
This bug is still present in edgy. I upgraded gnome-cups-manager and its dependencies from the edgy repos and it still acts exactly the same. I'm having a hard time navigating the gnome bug tracker and locating anything relevant to this. I have not reported it as upstream because I haven't

[Bug 58403] Re: adding smb printer difficult on large networks

2006-09-18 Thread Eric Li
Confirm. Sat there for three minutes mashing ESC... -- adding smb printer difficult on large networks https://launchpad.net/bugs/58403 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 58403] Re: adding smb printer difficult on large networks

2006-09-18 Thread Till Kamppeter
When it scans, it should simply not pop up any authentication windows (I do so in printerdrake in Mandriva). If it cannot obtain info (list of available printer shares) from a server without any authentication, it should skip the server. It can still ask for authentication if the user chooses one

[Bug 58403] Re: adding smb printer difficult on large networks

2006-09-18 Thread Ryan Rawdon
At the suggestion of Michael Vogt, I looked through the gnome bugzilla for this bug for about 15 minutes, to see if perhaps this is an upstream problem. I cannot find anything related, but I am also not familiar with the gnome bugtracker at all. If anyone more familiar with gnome territory would

[Bug 58403] Re: adding smb printer difficult on large networks

2006-09-04 Thread Ryan Rawdon
** Changed in: gnome-cups-manager (Ubuntu) Assignee: (unassigned) = Ross Burton -- adding smb printer difficult on large networks https://launchpad.net/bugs/58403 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 58403] Re: adding smb printer difficult on large networks

2006-09-03 Thread Strike
I can confirm this. ** Changed in: gnome-cups-manager (Ubuntu) Status: Unconfirmed = Confirmed -- adding smb printer difficult on large networks https://launchpad.net/bugs/58403 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com