delphi programming forums mysql charset mget recursive synonimos
free ventrilo servers hosting cs javascript delay python find in list
Back Forum New
abstract:

Another thing: how do I know the name of the partitions I want to mount (I only know the major ntfs - hda1)?
I'm very confused here - and this is quite urgent.
So I ask for your help.
Kind regards,
Kepler http://bbs.prog365.com/images/sites/rolleyes.gif


Hi,
I've downloaded The Debian and installed it in a Linux Partition in my PC (along with a FAT32, a swap, and a ntfs where the windows XP is).
Now my problem - so to speak - is where the hell is the C/C++ compiler (gcc, I think)? Where should I install it in order to compile the FAT32's files into linux language? And how?
I've tried install it using "apt-get install gcc" but I've got an error regarding a conflict with e2fs...
Another thing: how do I know the name of the partitions I want to mount (I only know the major ntfs - hda1)?
I'm very confused here - and this is quite urgent.
So I ask for your help.
Kind regards,
Kepler

TOP

Alright, i'm trying to answer as best I can but your post was largely unclear.
you need to
apt-get install build-essential
to get GCC.
Secondly you'll need the source of LINUX programs, windows ones won't just work. You can untar the files, go into the directory and there are probably these files:
configure
makefile
then you do
./configure && make && sudo make install
to compile and install that program.
to get partition numbers,
fdisk /dev/hda
hit 'p' to get a list
hit 'q' to exit

TOP

Hi,
sorry for the mess... the "apt-get install build-essential" gives me the error "temporary failure resolving 'mirrors.kernel.org', etc.". How can I use another mirror?
Sorry, once again.
Kepler

TOP

can you resolve domains properly? try pinging google.com from that box. If not, you'll need to get some nameservers addresses local to you and add them to /etc/resolv.conf like this
nameserver ipaddress ipaddress

TOP

abstract:

Another thing: how do I know the name of the partitions I want to mount (I only know the major ntfs - hda1)?
I'm very confused here - and this is quite urgent.
So I ask for your help.
Kind regards,
Kepler http://bbs.prog365.com/images/sites/rolleyes.gif


Posted: 2006-04-23 10:23    Post subject: Troubles...
--------------------------------------------------------------------------------
Hi,
Well, the problem is that I receive:
ping: unknown host www.google.com
I tested other addresses, with the same result. In Windows it works fine, but in the Linux partition it seems that I don't have internet - it wasn't a problem before.
The sources.list is:
#deb file:///cdrom/ sarge main
deb ftp://mirrors.kernel.org/debian/ testing main
deb-src ftp://mirrors.kernel.org/debian/ testing main
deb http://security.debian.org/ testing/updates main
How can I configure the resolv.conf file. Using wich IPs ( there's the IP, the DNS, the Gateway...)? One of the lines is unknown to me:
  nameserver 81.92.192.3
Kind regards,
Kepler

TOP

nope. resolv.conf only needs one line
here's mine for my nameservers
bash Code:
[url=#top]
[/url]Original
                - bash Code
nameserver 194.168.4.100 194.168.8.100
  1. nameserver
  2. 194
  3. .
  4. 168
  5. .
  6. 4
  7. .
  8. 100
  9. 194
  10. .
  11. 168
  12. .
  13. 8
  14. .
  15. 100
Copy Code
You might need to look in your ethernet config as well.
open up /etc/init.d/net
mine looks like this
bash Code:
[url=#top]
[/url]Original
                - bash Code
#IP = 192.168.0.1/255.255.255.0   Broadcast IP follows
config_eth0=("192.168.0.2 netmask 255.255.255.0 brd 192.168.0.255")
#Gateway address
routes_eth0=("default gw 192.168.0.1")
  1. #IP = 192.168.0.1/255.255.255.0   Broadcast IP follows
  2. config_eth0=
  3. (
  4. "192.168.0.2 netmask 255.255.255.0 brd 192.168.0.255"
  5. )
  6. #Gateway address
  7. routes_eth0=
  8. (
  9. "default gw 192.168.0.1"
  10. )
Copy Code

TOP

Hi,
The resolv.conf modifications didn't worked out. As for the other file I'm not sure how to configure it.
Kepler

TOP

just insert those lines into it, changing values to match your ip, netmask and gateway. I commented it well enough that you should see which one is which.

TOP

Ok - just one question: what is the Broadcast IP ? Meanwhile - I checked - the file /etc/init.d/net doesn't exists.
And looking to your file, numbers like 192.168.etc are local - not the real IP or Gateway.
Regards,
Kepler

TOP

abstract:

Another thing: how do I know the name of the partitions I want to mount (I only know the major ntfs - hda1)?
I'm very confused here - and this is quite urgent.
So I ask for your help.
Kind regards,
Kepler http://bbs.prog365.com/images/sites/rolleyes.gif


You don't need to worry about the broadcast IP, just know that it usually ends in 255
I'm thinking of this from a gentoo POV, and since debian shares a lot of structure in common with gentoo, i assumed networking was in the same place. Odd.
Can't you connect via DHCP?
EDIT: Yes, they are the local ip the gateway takes, and that i want my machine to take. That is the way to set up networking.

TOP

Back Forum