OK.
Feel like going the the command line?
Open Konsole (More Applications > Terminals).
First, we need to get your PC's IP address (because we believe the PC and the printer are on the same subnet):
ifconfig
This should get you something like the following:
[jpaglia@grendel ~]$ /sbin/ifconfig
eth0 Link encap:Ethernet HWaddr 00:16:76:E1:34:C7
inet addr:192.168.0.12 Bcast:192.168.0.255 Mask:255.255.255.0
inet6 addr: fe80::216:76ff:fee1:34c7/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:51253157 errors:0 dropped:0 overruns:0 frame:0
TX packets:85298897 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:100
RX bytes:1106701471 (1.0 GiB) TX bytes:2645992721 (2.4 GiB)
Memory:d0400000-d0420000
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:2521119 errors:0 dropped:0 overruns:0 frame:0
TX packets:2521119 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:4193606175 (3.9 GiB) TX bytes:4193606175 (3.9 GiB)
[jpaglia@grendel ~]$
We're interested in the "inet addr" portion (bolded, above).
The assumption is that you're using a 255.255.255.0 subnet. That means that only the last number changes for devices on the same network subnat (your wireless, in this case). My example shows
192.168.0.12, so we want to focus on the
192.168.0 portion.
Now, we need to run
nmap to scan the network (I don't recall if
nmap was included in the CD/DVD, so you might need to install it via Synaptic).
The following command should now be used:
nmap 192.168.0.1-254 | grep open -4
Depending on your results from the first command, you might have to change the
192.168.0 portion to whatever is relevant to your network.
Your results will vary from mine, but here's an example:
[jpaglia@grendel ~]$ nmap 192.168.0.1-254 | grep open -4
Starting Nmap 5.00 ( http://nmap.org ) at 2011-12-14 12:45 EST
Interesting ports on 192.168.0.1:
Not shown: 998 closed ports
PORT STATE SERVICE
80/tcp open http
5678/tcp open unknown
Interesting ports on 192.168.0.10:
Not shown: 983 closed ports
PORT STATE SERVICE
22/tcp open ssh
80/tcp open http
139/tcp open netbios-ssn
445/tcp open microsoft-ds
631/tcp open ipp
6839/tcp open unknown
7435/tcp open unknown
8080/tcp open http-proxy
8089/tcp open unknown
9100/tcp open jetdirect
9101/tcp open jetdirect
9102/tcp open jetdirect
9110/tcp open unknown
9111/tcp open DragonIDSConsole
9220/tcp open unknown
9290/tcp open unknown
9500/tcp open unknown
Interesting ports on 192.168.0.12:
Not shown: 994 closed ports
PORT STATE SERVICE
22/tcp open ssh
111/tcp open rpcbind
139/tcp open netbios-ssn
445/tcp open microsoft-ds
631/tcp open ipp
902/tcp open iss-realsecure
Interesting ports on medea (192.168.0.100):
Not shown: 999 closed ports
PORT STATE SERVICE
22/tcp open ssh
Nmap done: 254 IP addresses (4 hosts up) scanned in 18.35 seconds
[jpaglia@grendel ~]$
I
highlighted some of the values you should be looking for...
192.168.0.10 is my printer, and there it is!
Depending on the number of devices on your network, the results may be longer or shorter, but it should get you started.