• Updated 2023-07-12: Hello, Guest! Welcome back, and be sure to check out this follow-up post about our outage a week or so ago.

Linux on my B&W!

QuadSix50

Well-known member
Oh thankyouthankyouthankyouthankyou!!!
Weird that it gave you all this trouble when it doesn't affect my xorg.conf file with them in there. :?:

Either way, I'm glad that it's finally working. :D

 

QuadSix50

Well-known member
Make sure that you're in the following groups (You can use the KUser tool to add your user into the listed groups):

floppy

audio

video

cdrom

plugdev

Once you've done that, log out and log back in again. If that doesn't do it, restart (you shouldn't need to do this, but just in case do it if logging out and in doesn't work).

 

MacTCP

Well-known member
No, all there are are hard drives in there (which I'm not even allowed to open on root)

Is it because the zips are formatted with HFS?

Also, where do I get the Lisa daemon necessary for it to be part of my LAN?

 

QuadSix50

Well-known member
Ah, that might be why.....you would need to load the hfs module and the hfsplus module (in order to read HFS and HFS+ volumes, respectively).

At the command prompt just type (do this as root):

Code:
modprobe -a hfs hfsplus
 

MacTCP

Well-known member
I logged out of my normal user, and logged into root. I typed that command, then switched back to my normal user. No Zip Disk showed up. Is it maybe because the zip disk was in the whole time? I don't know how I can eject it.

 

MacTCP

Well-known member
More discoveries:

HFS HD loads

HFS CD doesn't load

HFS Zip doesn't load

(I don't have any non-HFS disks to try)

Any ideas?

 

QuadSix50

Well-known member
BTW, you can also use the "su" command to become root. Just type "su" and then provide the password for root. To leave root, type "exit" at the command prompt and you'll be back to your normal user.

If you want to make sure your HFS and HFS+ modules were loaded, use the "lsmod" command. Just typing "lsmod" will show you all the loaded modules. However, if you just want to see the HFS/HFS+ modules, pipe "lsmod" to "grep" for "hfs*":

Code:
lsmod | grep hfs*
BTW, you might find the following site useful. It's called the Rosetta Stone for Unix and it compares similar commands across various Unix operating systems. Just Command-click the ones you want and click "Draw Table".

http://bhami.com/rosetta.html

As for the ZIP drive, make sure the modules are loaded. Do an "lsmod" and look for either "ppa" or "imm". The former is the module for the standard ZIP drive while the latter is for the Zip Plus. If they're not loaded, do the following as root (remember to "su" to root):

Code:
modprobe -a ppa imm
Then try and see if it will load.

 

MacTCP

Well-known member
BTW, you can also use the "su" command to become root. Just type "su" and then provide the password for root. To leave root, type "exit" at the command prompt and you'll be back to your normal user.
If you want to make sure your HFS and HFS+ modules were loaded, use the "lsmod" command. Just typing "lsmod" will show you all the loaded modules. However, if you just want to see the HFS/HFS+ modules, pipe "lsmod" to "grep" for "hfs*":

Code:
lsmod | grep hfs*
BTW, you might find the following site useful. It's called the Rosetta Stone for Unix and it compares similar commands across various Unix operating systems. Just Command-click the ones you want and click "Draw Table".

http://bhami.com/rosetta.html

As for the ZIP drive, make sure the modules are loaded. Do an "lsmod" and look for either "ppa" or "imm". The former is the module for the standard ZIP drive while the latter is for the Zip Plus. If they're not loaded, do the following as root (remember to "su" to root):

Code:
modprobe -a ppa imm
Then try and see if it will load.

Neither the ppa or imm modules were found.

 

QuadSix50

Well-known member
Weird. OK, open up the rc.modules file in /etc/rc.d using nano (must be root). Hit Ctrl-W to find "Where Is" the name "ppa". If it finds it, uncomment the line for it so it loads the module on bootup. Do the same for "imm". Once you've uncommented the lines to load the ppa and imm modules, add the following two lines somewhere in that file:

Code:
/sbin/modprobe hfs
/sbin/modprobe hfsplus
Once you've done that, save the file and restart the Mac. Once you back at the desktop, insert the ZIP disk and see if it's detected.

 

QuadSix50

Well-known member
I forgot one thing. Add the following to rc.modules as well (check to make sure it's not already commented out in that file)...

/sbin/modprobe ide-scsi

This is for SCSI emulation which might be needed by the ZIP drive.

 

John8520

Well-known member
erhm... I didn't know slackware did mount-on-insertion?

you may have to manually mount it, give that a go.

 

QuadSix50

Well-known member
erhm... I didn't know slackware did mount-on-insertion?
you may have to manually mount it, give that a go.
Slackware 12 now uses udev and hal, so yeah. It will do it with optical discs and USB drives. I haven't tried with ZIP discs though.

 
Last edited by a moderator:
Top