LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware
User Name
Password
Linux - Hardware This forum is for Hardware issues.
Having trouble installing a piece of hardware? Want to know if that peripheral is compatible with Linux?

Notices


Reply
  Search this Thread
Old 04-01-2007, 02:10 PM   #1
Onewheelinweirdo
Member
 
Registered: Mar 2007
Location: Grand Rapids
Distribution: Kubuntu Fiesty 7.04
Posts: 53

Rep: Reputation: 15
Unable to add network HDD - want to add Network printer


I have a Iomega StorCenter 250GB that I want to be able to connect to. It came with a setup CD and I ran the configuration wizard for linux. it came back with this:
ThinkTank:/home/josh # '/media/SOLUTIONS/Linux Tools/Iomega Discovery/discoverylx'
Scanning your network for Iomega StorCenter Network Drives.
Please wait...

No Iomega StorCenter Network Drives were found on your network
Please check all network connections and try again
My computer is hooked up to the same router as the HDD. Yes, the HDD is on I can access the configuration options of the HDD itself when I type in it's IP address. I've read stuff about this Samba thing that can be used, but I don't know how to use that. I have also tried to access it in remote:/ under SMB, ZeroConf and SLP.

While I'm posting a new thread, could someone give me a link or a how to on how to add a network printer? (HP LaserJet 4MV with it's own print server)
Oh, Yeah. The print server is a JetDirect that plugs into a space inside the printer. I added a printer in CUPS, but I'm not sure I did it right. I set: ipp://192.168.0.9/ipp/ as the URI. when I try to print a test page, it says the printer is busy even though there are no other computers using it.

OHHHHHHH YEEEEESSSSSSSSSSSSSSSSS!!!!!! I made it work without any help! WOOT WOOT! (lot of fiddling though)

Last edited by Onewheelinweirdo; 04-02-2007 at 08:53 AM.
 
Old 04-02-2007, 01:02 PM   #2
theNbomr
LQ 5k Club
 
Registered: Aug 2005
Distribution: OpenSuse, Fedora, Redhat, Debian
Posts: 5,399
Blog Entries: 2

Rep: Reputation: 908Reputation: 908Reputation: 908Reputation: 908Reputation: 908Reputation: 908Reputation: 908Reputation: 908
I have no idea what standard the IOmega box uses for disk sharing, but if it is intended to work with Windows, it will almost certainly support smb/samba. As a simple diagnostic, see if you can connect to it with
Code:
smbclient -L xxx.xxx.xxx.xxx
replace the xxx's with the IP of the box. If it is accepting connections, you should see a list of smb shares. Then, make a mountpoint, and try mounting the share:
Code:
mkdir /mnt/iomegaBoxOrWhateverNameYouLike
mount -t smbfs -o ip=xxx.xxx.xxx.xxx,rw //xxx.xxx.xxx.xxx/shareNameFromSmbclient /mnt/iomegaBoxOrWhateverNameYouLike
ls -las /mnt/iomegaBoxOrWhateverNameYouLike
You may have to fiddle with the option settings (-o .... ) for smbmount for username,password,workgroup, etc. Hopefully this is documented.

Your system may have smb4k, and not smbclient. It will allow you to extract the same information.


--- rod.

Last edited by theNbomr; 04-02-2007 at 01:03 PM.
 
Old 04-02-2007, 08:47 PM   #3
Onewheelinweirdo
Member
 
Registered: Mar 2007
Location: Grand Rapids
Distribution: Kubuntu Fiesty 7.04
Posts: 53

Original Poster
Rep: Reputation: 15
It didn't work.

ThinkTank:/home/josh # smbclient -L 192.168.0.2
Password:
Domain=[WORKGROUP] OS=[Unix] Server=[Samba 3.0.14a]

Sharename Type Comment
--------- ---- -------
NetHDD Disk
IPC$ IPC IPC Service ()
ADMIN$ IPC IPC Service ()
Printer2 Printer
Printer1 Printer
Domain=[WORKGROUP] OS=[Unix] Server=[Samba 3.0.14a]

Server Comment
--------- -------
BLACKHOLE
BURN

Workgroup Master
--------- -------
MSHOME DELL-ATHLON
TUX-NET THINKTANK
WORKGROUP BLACKHOLE
ThinkTank:/home/josh # mkdir /mnt/BlackHole
ThinkTank:/home/josh # mount -t smbfs -o ip=192.168.0.2,rw //192.168.0.2/NetHDD /mnt/BlackHole
mount: unknown filesystem type 'smbfs'
I also tried it with smb4k:
ThinkTank:/home/josh # smbclient -L 192.168.0.2
Password:
Domain=[WORKGROUP] OS=[Unix] Server=[Samba 3.0.14a]

Sharename Type Comment
--------- ---- -------
NetHDD Disk
IPC$ IPC IPC Service ()
ADMIN$ IPC IPC Service ()
Printer2 Printer
Printer1 Printer
Domain=[WORKGROUP] OS=[Unix] Server=[Samba 3.0.14a]

Server Comment
--------- -------
BLACKHOLE
BURN

Workgroup Master
--------- -------
MSHOME DELL-ATHLON
TUX-NET THINKTANK
WORKGROUP BLACKHOLE
ThinkTank:/home/josh # mkdir /mnt/BlackHole
mkdir: cannot create directory `/mnt/BlackHole': File exists
ThinkTank:/home/josh # mount -t smb4k -o ip=192.168.0.2,rw //192.168.0.2/NetHDD /mnt/BlackHole
mount: unknown filesystem type 'smb4k'
When i look at the drive properties in XP, it says the drive is formatted as NTFS. That Can't be right.
What should I try next?
 
Old 04-02-2007, 09:30 PM   #4
michaelk
Moderator
 
Registered: Aug 2002
Posts: 25,700

Rep: Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895
Use cifs instead of smbfs.

I did some googling at Iomega's website and if I was looking at the correct page it appears their network storage units can support nfs, smb, ftp and a few other protocols.

BTW the network storage devices run linux and you can download the OS from Iomega's website. It does not matter what the client thinks the filesystem type is since the server actually does all the file read/writes.
 
Old 04-03-2007, 10:12 AM   #5
theNbomr
LQ 5k Club
 
Registered: Aug 2005
Distribution: OpenSuse, Fedora, Redhat, Debian
Posts: 5,399
Blog Entries: 2

Rep: Reputation: 908Reputation: 908Reputation: 908Reputation: 908Reputation: 908Reputation: 908Reputation: 908Reputation: 908
Quote:
Originally Posted by Onewheelinweirdo
ThinkTank:/home/josh # mount -t smb4k -o ip=192.168.0.2,rw //192.168.0.2/NetHDD /mnt/BlackHole
mount: unknown filesystem type 'smb4k'[/INDENT]When i look at the drive properties in XP, it says the drive is formatted as NTFS. That Can't be right.
What should I try next?
You should try smbfs, not 'smb4k' as the filesystem type in the mount command.

EDIT: Oops, I just re-read your full post, and see that you evidently have
a kernel that does not know about smb filesystems. I don't know Suse at all, but perhaps you can install smbfs as a loadable module:
Code:
modprobe smbfs
--- rod.

Last edited by theNbomr; 04-03-2007 at 10:21 AM.
 
Old 04-03-2007, 10:16 AM   #6
theNbomr
LQ 5k Club
 
Registered: Aug 2005
Distribution: OpenSuse, Fedora, Redhat, Debian
Posts: 5,399
Blog Entries: 2

Rep: Reputation: 908Reputation: 908Reputation: 908Reputation: 908Reputation: 908Reputation: 908Reputation: 908Reputation: 908
Quote:
Originally Posted by michaelk
It does not matter what the client thinks the filesystem type is since the server actually does all the file read/writes.
I respectfully disagree with this. If that were true, we would need only one network filesystem client driver, and it would handle all types of servers. The format of the network share as seen by client hosts is absolutely dependent on the server.

--- rod.
 
Old 04-04-2007, 04:54 PM   #7
Onewheelinweirdo
Member
 
Registered: Mar 2007
Location: Grand Rapids
Distribution: Kubuntu Fiesty 7.04
Posts: 53

Original Poster
Rep: Reputation: 15
Hey thanks guys! cifs did the trick! Now what do I do to make it appear in Konqueror? I can see all of the directories in Samba now.

EDIT: Woah!!! Some part of KDE crashed and now there's no menu! I rebooted and it didn't help.
OK, I fixed it by deleting my user account and re-creating it. It worked for a while, but now whenever I open an application, it shows up twice in the taskbar.

Last edited by Onewheelinweirdo; 04-05-2007 at 12:00 PM.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Unable to add network interface under Ubuntu 5.10 pxumsgdxpcvjm Linux - Wireless Networking 0 01-29-2006 02:32 PM
Trying to add a third hard drive (hdd) and get Unable to open /dev/hdd MikeyCarter Linux - Hardware 4 12-26-2005 10:27 PM
unable to add default route (network unreachable) beebop Linux - Networking 12 05-30-2005 11:07 AM
I want to add 1 more HDD to Linux 7.2 maverick9900 Linux - Hardware 1 05-05-2005 08:08 AM
add an hdd?? HmmLinux Linux - Hardware 2 02-19-2004 11:42 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware

All times are GMT -5. The time now is 06:36 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration