Programming Forums
User Name Password Register
 

RSS Feed
FORUM INDEX | TODAY'S POSTS | UNANSWERED THREADS | ADVANCED SEARCH

Reply
 
Thread Tools Display Modes
Old Apr 11th, 2005, 9:15 AM   #1
Cipher
Hobbyist Programmer
 
Cipher's Avatar
 
Join Date: Feb 2005
Location: /home/cipher
Posts: 123
Rep Power: 4 Cipher is on a distinguished road
Send a message via AIM to Cipher Send a message via MSN to Cipher
n00b questions..A thread on dumb questions.

1.What is a subnet mask?

2.What is a Host Address?

3. How do you make a windows partition for Linux?

The End.
__________________
And there was much rejoicing... Yay....
Cipher is offline   Reply With Quote
Old Apr 11th, 2005, 10:00 AM   #2
Infinite Recursion
Programming Guru
 
Infinite Recursion's Avatar
 
Join Date: Jul 2004
Location: United States
Posts: 3,466
Rep Power: 8 Infinite Recursion is on a distinguished road
Send a message via MSN to Infinite Recursion Send a message via Yahoo to Infinite Recursion
not everyone is a systems oriented person The only "dumb" question, in my opinion, is the one that is not asked.
__________________
http://jasonpowers.net

"There are a thousand hacking at the branches of evil to one who is striking at the root."
Infinite Recursion is offline   Reply With Quote
Old Apr 11th, 2005, 10:31 AM   #3
java_roshan
Professional Programmer
 
Join Date: Mar 2005
Location: Student of University of Mumbai, Maharashtra State, India
Posts: 344
Rep Power: 4 java_roshan is on a distinguished road
What do you mean by "windows partition for Linux?" Please make this question clear ....
__________________
Visit: http://www.somaiya.edu
java_roshan is offline   Reply With Quote
Old Apr 11th, 2005, 10:42 AM   #4
tempest
Programming Guru
 
tempest's Avatar
 
Join Date: Oct 2004
Posts: 1,041
Rep Power: 5 tempest is on a distinguished road
Send a message via ICQ to tempest Send a message via AIM to tempest Send a message via Yahoo to tempest
You can't make a windows partition for linux... linux can't read a windows partition... however if you're trying to create a linux partition from windows look into Partition Magic.
__________________

tempest is offline   Reply With Quote
Old Apr 11th, 2005, 10:53 AM   #5
Pizentios
Programming Guru
 
Pizentios's Avatar
 
Join Date: May 2004
Location: Brandon, Manitoba, Canada
Posts: 2,023
Rep Power: 7 Pizentios is on a distinguished road
Send a message via ICQ to Pizentios Send a message via MSN to Pizentios
Quote:
Originally Posted by tempest
You can't make a windows partition for linux... linux can't read a windows partition... however if you're trying to create a linux partition from windows look into Partition Magic.
ummm, yeah you can. I have several windows shares mounted all the time on my box, as well as an old 98 drive that i use some times.

linux can read any file system! You just need to have support compiled in your kernel.

try:

  mount -t vfat /dev/hda1 /mnt/whatever

where /dev/hda1 is the partition that you want to mount.
and where /mnt/whatever is the mount point that you want.
if that doesn't work, it could be because the file system isn't fat based, and is probably NTFS, which can be also mounted under linux, just change the -t option (see man mount for more info).

if it still doesn';t work (mounting as NTFS), try running:

  /sbin/fdisk -l /dev/hda

that will tell you the partitions, and the reason that it's not mount is probably because the partition is a extend drive inside a logical drive. That should get you up and running, if you want it to be mounted all the time (like on boot) just edit your /etc/fstab (see man fstab for more info).

NOTE: on most systems you need to have root to do this.
__________________
Profanity is the one language that all programmers understand.

Check out my Blog <---updated Nov 30 2007!
Pizentios is offline   Reply With Quote
Old Apr 11th, 2005, 11:25 AM   #6
Infinite Recursion
Programming Guru
 
Infinite Recursion's Avatar
 
Join Date: Jul 2004
Location: United States
Posts: 3,466
Rep Power: 8 Infinite Recursion is on a distinguished road
Send a message via MSN to Infinite Recursion Send a message via Yahoo to Infinite Recursion
ummm.. i didn't think the questions in this thread were serious??? maybe i misread the original poster's intentions.
__________________
http://jasonpowers.net

"There are a thousand hacking at the branches of evil to one who is striking at the root."
Infinite Recursion is offline   Reply With Quote
Old Apr 11th, 2005, 11:29 AM   #7
Pizentios
Programming Guru
 
Pizentios's Avatar
 
Join Date: May 2004
Location: Brandon, Manitoba, Canada
Posts: 2,023
Rep Power: 7 Pizentios is on a distinguished road
Send a message via ICQ to Pizentios Send a message via MSN to Pizentios
maybe, but i could see cypher needing help with mounting a windows drive from linux (sorry if you don't cypher i just thought so because your new to linux).
__________________
Profanity is the one language that all programmers understand.

Check out my Blog <---updated Nov 30 2007!
Pizentios is offline   Reply With Quote
Old Apr 11th, 2005, 4:57 PM   #8
Cipher
Hobbyist Programmer
 
Cipher's Avatar
 
Join Date: Feb 2005
Location: /home/cipher
Posts: 123
Rep Power: 4 Cipher is on a distinguished road
Send a message via AIM to Cipher Send a message via MSN to Cipher
no i actually was totally serious. I really DON'T know what a subnet mask is. I really DON'T know how to install Linux(which btw I reaaally want to) and I really DON'T know what a host address is.
__________________
And there was much rejoicing... Yay....
Cipher is offline   Reply With Quote
Old Apr 11th, 2005, 5:11 PM   #9
Infinite Recursion
Programming Guru
 
Infinite Recursion's Avatar
 
Join Date: Jul 2004
Location: United States
Posts: 3,466
Rep Power: 8 Infinite Recursion is on a distinguished road
Send a message via MSN to Infinite Recursion Send a message via Yahoo to Infinite Recursion
ohhh. well in that case...

1) The subnet mask is used to determine where the network number in an IP address ends and the node number in an IP address begins. A node is anything on a network that needs an IP address to communicate (a PC, server, router, etc).

2) The host address is the Internet IP Address or hostname of a remote server.

3) Partition magic for Windows.
__________________
http://jasonpowers.net

"There are a thousand hacking at the branches of evil to one who is striking at the root."
Infinite Recursion is offline   Reply With Quote
Old Apr 11th, 2005, 5:19 PM   #10
Cipher
Hobbyist Programmer
 
Cipher's Avatar
 
Join Date: Feb 2005
Location: /home/cipher
Posts: 123
Rep Power: 4 Cipher is on a distinguished road
Send a message via AIM to Cipher Send a message via MSN to Cipher
Thanks IR. Once again this forum has saved my computer life.
__________________
And there was much rejoicing... Yay....
Cipher is offline   Reply With Quote
Reply

Bookmarks

« Previous Thread in Forum | Next Thread in Forum »

Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

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 On
HTML code is Off
Forum Jump




DaniWeb IT Discussion Community
All times are GMT -5. The time now is 1:30 AM.

Powered by vBulletin® Version 3.7.0, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Copyright ©2007 DaniWeb® LLC