Mourning the loss of our friend, WhitPhil.
There's no such thing as a stupid question, but they're the easiest to answer.
JoinTour
Login
Search
 
Linux and Unix
Tag Cloud
access audio blue screen boot bsod connection crash dell desktop driver dvd email error excel excel 2003 firefox hard drive hardware hijackthis internet keyboard laptop malware monitor motherboard network networking outlook problem processor ram recovery router screen slow sound spyware tdlwsp.dll trojan upgrade vba video virus vista vundo windows windows 7 windows vista windows xp wireless
Search
Search for:
Tech Support Guy Forums > Operating Systems > Linux and Unix >
Windows 2000 not recgonizing Slackware

Tip: Click here to scan for System Errors and Optimize PC performance
[ Sponsored Link ]

Closed Thread
 
Thread Tools
Regicide's Avatar
Senior Member with 307 posts.
 
Join Date: Aug 2003
Experience: Advanced
18-Apr-2004, 05:58 PM #1
Windows 2000 not recgonizing Slackware
I recently installed Windows 2000 Professional, and Slackware 9.1. Whenever I am in 2000, Windows doesn't realize that the other partition is linux. So, I can't access any data that is on the Linux partition. Everytime I try to, Windows wants me to format that partition. Is this normal? If it isn't how can I change it. I have a Swap and a Linux partition and I use LILO. Also, when I am in Linux, can I access any information on the Windows partition? Mind you: I am a n00b to Linux.
__________________
When you give everything and the feeling is gone
All the giving is fake, did you fake enough?
When there's nothing left, did you take enough?
Whiteskin's Avatar
Distinguished Member with 2,051 posts.
 
Join Date: Nov 2002
Location: Alberta, Canada
Experience: Windows: Decent. Unix/Linux: Advanced +1
18-Apr-2004, 08:32 PM #2
Yes it is normal. Standard linux partition is ext2[3], which windows will not recognize. Try (http://uranus.it.swin.edu.au/~jn/linux/explore2fs.htm) explore2fs, which may allow you to acess it. you can also acess your windows info (though, write will not work) by issuing the command (I'm making the assumption that windows is the first primary partition on first drive) mount -t ntfs -ro /dev/hda1 /mnt.

The last paramater can be changed to any open, empty directory. This command will have to be issued as root.
__________________
emerge world_domination;
Smart Questions gentoo
Ubuntu
linux google:Shiny!
Regicide's Avatar
Senior Member with 307 posts.
 
Join Date: Aug 2003
Experience: Advanced
18-Apr-2004, 09:56 PM #3
Thanks alot! The explorer program works great, and the mount works fine too. But, when i type in: mount -t ntfs -ro /dev/hda1 /root/Windows, I get an error. But when I take out the "-ro" it works fine. Here's another question: how do I make Linux mount /dev/hda1 everytime it starts up? And, don't I have to tell it to unmount (umount) it too when it shuts down? I'm running LILO if that helps at all. Thanks again!
__________________
When you give everything and the feeling is gone
All the giving is fake, did you fake enough?
When there's nothing left, did you take enough?
Whiteskin's Avatar
Distinguished Member with 2,051 posts.
 
Join Date: Nov 2002
Location: Alberta, Canada
Experience: Windows: Decent. Unix/Linux: Advanced +1
18-Apr-2004, 10:12 PM #4
pardon, that should have been -o ro. You really should create a top level windows directory, as the /root/windows directory is only root acessable, and unless you run as root all the time (Which is a NO NO!), you wont be able to get to your files

To mount it at boot, add a line to your fstab like this (I may be wrong on the numbers, give me a couple of minutes to check)

/dev/hda1 /windows ntfs ro 0 0

btw, fstab is a file in /etc/
__________________
emerge world_domination;
Smart Questions gentoo
Ubuntu
linux google:Shiny!
Regicide's Avatar
Senior Member with 307 posts.
 
Join Date: Aug 2003
Experience: Advanced
19-Apr-2004, 09:42 PM #5
Thanks for the help Whitesnake! I've got a new account on Linux that has access to the Windows mount! But I have one slight problem. I have installed my brother's wireless netgear usb adapter (MA101A). I installed it correctly on Linux, but I can't seem to get it to work with DHCP. I can get it to work this way:
Code:
ifconfig eth1 192.168.0.9
route add default gw 192.168.0.1
I have to do this everytime my laptop starts up. Is there a way I can use my router's DHCP and have Linux automaticaly do it when it starts up? Basicly, after I got Linux to recongize my adapter, this is what I did:
1. iwconfig eth1 mode Managed
2. iwconfig eth1 essid Wireless
3. iwconfig eth1 channel 1
4. Added this to my /etc/modules.conf file: "post-install usbvnet /bin/fastvnet.sh"
5. Edited the /tmp/.vnetrc file to the right specifications of my network.
I know that the driver is the right one. I know that the driver is right because I can manually set it up whenever my computer starts. Any suggestions?
__________________
When you give everything and the feeling is gone
All the giving is fake, did you fake enough?
When there's nothing left, did you take enough?
Whiteskin's Avatar
Distinguished Member with 2,051 posts.
 
Join Date: Nov 2002
Location: Alberta, Canada
Experience: Windows: Decent. Unix/Linux: Advanced +1
20-Apr-2004, 12:01 AM #6
tried dhclient?
tsunam's Avatar
Senior Member with 1,246 posts.
 
Join Date: Sep 2003
Experience: Linux~su
20-Apr-2004, 12:32 AM #7
well you can always add a simple script at bootup to the rc.conf that will do what you do manually.

and for it to use the networks dhcp shouldnt it just be dhcpcd eth0 <--to get the dhcp from the router.
Regicide's Avatar
Senior Member with 307 posts.
 
Join Date: Aug 2003
Experience: Advanced
20-Apr-2004, 06:51 AM #8
I tried using dhclient, it said that there were no active connections or something like that. I rather have it be connected to the dhcp of the router because there are 4 other computers on this network and I don't want this one interfering with their IPs. I haven't tried the dhcpcd yet. I will later once I get home.
__________________
When you give everything and the feeling is gone
All the giving is fake, did you fake enough?
When there's nothing left, did you take enough?
Regicide's Avatar
Senior Member with 307 posts.
 
Join Date: Aug 2003
Experience: Advanced
20-Apr-2004, 10:06 PM #9
Ok, dhcpcd didn't work. But, I asked my friend and a few FAQs, and it seems that it is recomended that I have a static IP for Slackware. Knowing this now, I want to have Slackware boot everytime with the following lines:
Code:
ifconfig eth1 192.168.0.9
route add default gw 192.168.0.1
I tried to look for the rc.conf file but I couldn't find it. Is there a certain boot file where I can add these lines to and how would I go about editing this file? Thanks for keeping with me.
__________________
When you give everything and the feeling is gone
All the giving is fake, did you fake enough?
When there's nothing left, did you take enough?
Whiteskin's Avatar
Distinguished Member with 2,051 posts.
 
Join Date: Nov 2002
Location: Alberta, Canada
Experience: Windows: Decent. Unix/Linux: Advanced +1
20-Apr-2004, 10:11 PM #10
what are the contents of your /etc/ directory?
try ls /etc/ | grep rc

This can help us (me) figure out what kind of boot slack uses. If it has rc1-6.d then you would make a scipt inside one of thsoe directories, rcN (N being default runlevel: check inittab) that excecutes those commands.
__________________
emerge world_domination;
Smart Questions gentoo
Ubuntu
linux google:Shiny!
Regicide's Avatar
Senior Member with 307 posts.
 
Join Date: Aug 2003
Experience: Advanced
21-Apr-2004, 03:31 PM #11
Code:
ls /etc/ | grep rc
dialogrc
imrc
inputrc
minirc.dfl
nail.rc
rc.d/
screenrc
slrn.rc
wget.rc
ytalk.rc
Whiteskin's Avatar
Distinguished Member with 2,051 posts.
 
Join Date: Nov 2002
Location: Alberta, Canada
Experience: Windows: Decent. Unix/Linux: Advanced +1
21-Apr-2004, 06:02 PM #12
what is in rc.d? a bunch of scipts, or a series of numbered directories? If its just scripts, then place an inet config script in there.
Regicide's Avatar
Senior Member with 307 posts.
 
Join Date: Aug 2003
Experience: Advanced
22-Apr-2004, 10:12 PM #13
All that is in rc.d/ is a bunch on script files. What is the file extension for script files, or do I save it as a .conf file? Can I use anyname, or is there one preset? This is what I'm thinking about doing:

#file: /etc/rc.d/myinet.conf
iwconfig eth1 channel 1
iwconfig eth1 essid Wireless
ifconfig eth1 192.168.0.9
route add default gw 192.168.0.1

EDIT:
I tried that file, it didn't work. Now, everytime it starts up, it says that eth1 isn't a regisitered device. I'm so frustrated!
__________________
When you give everything and the feeling is gone
All the giving is fake, did you fake enough?
When there's nothing left, did you take enough?

Last edited by Regicide : 22-Apr-2004 10:40 PM.
Whiteskin's Avatar
Distinguished Member with 2,051 posts.
 
Join Date: Nov 2002
Location: Alberta, Canada
Experience: Windows: Decent. Unix/Linux: Advanced +1
22-Apr-2004, 10:56 PM #14
I'm not familiar on how slackware boots, so i have to look it up.
Whiteskin's Avatar
Distinguished Member with 2,051 posts.
 
Join Date: Nov 2002
Location: Alberta, Canada
Experience: Windows: Decent. Unix/Linux: Advanced +1
22-Apr-2004, 11:01 PM #15
Ok. Try reading this. ()http://www.comptechdoc.org/os/linux/howlinuxworks/index.html()

Its quite detailed on how linux boots, and should give you some clues as to how to add that stuff to your network scripts.
Closed Thread Bookmark and Share

THIS THREAD HAS EXPIRED.
Are you having the same problem? We have volunteers ready to answer your question, but first you'll have to join for free. Need help getting started? Check out our Welcome Guide.

Smart Search

Find your solution!



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
WELCOME TO TECH SUPPORT GUY! Are you looking for the solution to your computer problem? Join our site today to ask your question -- for free! Our site is run completely by volunteers who want to help you solve your computer problems. See our Welcome Guide to get started.

Thread Tools


You Are Using:
Server ID
Advertisements do not imply our endorsement of that product or service.
All times are GMT -5. The time now is 11:56 AM.
Copyright © 1996 - 2009 TechGuy, Inc. All rights reserved.
Powered by vBulletin, Copyright © 2000 - 2009, Jelsoft Enterprises Ltd.
Powered by Cermak Technologies, Inc.