Buon pomeriggio,
Sto cercando di far installare GCC su un sistema CentOS 5.2 e sono stato inviato dal forum UNIX / Linux al forum di ingegneria di rete " https://networkengineering.stackexchange.com/questions/26048/centos-5-2-set-up-ip-network "a questo, spero davvero che qualcuno possa aiutarmi :-)
Un modo per ottenere questo risultato è quello di far funzionare la mia rete, e così posso lanciare uno script automatico per configurare / compilare / installare GCC, quindi la mia domanda arriva alla parte di rete: (vedi qui il mio post precedente)
Come spiegato in questo altro post di StackExchange " https://unix.stackexchange.com/questions/256093/how-to-install-gcc-4-7-2-on-centos-5-2 ", Vorrei installare una versione GCC su una macchina virtuale CentOS 5.2.
Ci sono due consigli in questo post:
Poiché il primo consiglio non può essere seguito, vorrei discutere il secondo avviso e vedere cosa devo fare per impostare una connessione di rete sulla mia macchina virtuale CentOS.
In questo momento, la mia situazione è la seguente:
Sul mio PC:
C:\>ipconfig
Windows IP Configuration
Connection-specific DNS Suffix . : <mycompany>.com
Link-local IPv6 Address . . . . . : fe80::5c75:960e:db38:8f39%11
IPv4 Address. . . . . . . . . . . : 10.130.2.58
Subnet Mask . . . . . . . . . . . : 255.255.252.0
Default Gateway . . . . . . . . . : 10.130.1.17
Ethernet adapter VMware Network Adapter VMnet1:
Connection-specific DNS Suffix . :
Link-local IPv6 Address . . . . . : fe80::30fe:4197:b189:5516%26
IPv4 Address. . . . . . . . . . . : 192.168.38.1
Subnet Mask . . . . . . . . . . . : 255.255.255.0
Default Gateway . . . . . . . . . :
Nelle mie impostazioni VMWare:
Nella mia macchina virtuale (CentOS 5.2): (piccola osservazione, bepc153
è il nome del mio PC):
(Per essere completo, aggiungo anche qui i contenuti dei file più importanti relativi alla rete):
root@dbserv1 network-scripts]# cat /etc/sysconfig/network-scripts/ifcfg-eth0
DEVICE=eth0
BOOTPROTO=none
#IPADDR=192.168.0.128
#NETMASK=255.255.255.0
ONBOOT=yes
DHCP_HOSTNAME=dbserv1.orbotech.org
TYPE=Ethernet
USERCTL=yes
IPV6INIT=no
PEERDNS=no
IPADDR=192.168.137.101
NETMASK=255.255.255.0
GATEWAY=192.168.137.1
[root@dbserv1 network-scripts]# cat /etc/hosts
# Do not remove the following line, or various programs
# that require network functionality will fail.
::1 localhost.localdomain localhost
192.168.137.101 dbserv1.orbotech.org dbserv1
192.168.137.1 bepc153 bepc153
[root@dbserv1 network-scripts]# cat /etc/resolv.conf
; generated by /sbin/dhclient-script
search localdomain
#nameserver 192.168.0.2
nameserver 192.168.137.1
#nameserver 195.238.3.17
Come puoi vedere, è intenzione di utilizzare il mio PC (bepc153) come gateway per la mia macchina virtuale per abilitare le impostazioni di rete e così, per andare su Internet.
Tuttavia, quando provo ad avviare il servizio di rete, ricevo il seguente messaggio:
root@dbserv1 network-scripts]# /etc/init.d/network restart
Shutting down interface eth0: [ OK ]
Shutting down loopback interface: [ OK ]
Bringing up loopback interface: [ OK ]
Bringing up interface eth0: RTNETLINK answers: Invalid argument
[ OK ]
E la rete sembra non funzionare neanche:
Dalla macchina VMWare:
[root@dbserv1 network-scripts]# ping 192.168.137.1
PING 192.168.137.1 (192.168.137.1) 56(84) bytes of data.
From 192.168.137.101 icmp_seq=2 Destination Host Unreachable
From 192.168.137.101 icmp_seq=3 Destination Host Unreachable
From 192.168.137.101 icmp_seq=4 Destination Host Unreachable
Dal mio PC (Windows 7):
C:\>ping 192.168.137.101
Pinging 192.168.137.101 with 32 bytes of data:
Request timed out.
Request timed out.
Request timed out.
Request timed out.
Qualcuno ha un indizio? Nel caso questo sia il forum sbagliato per le domande relative alla macchina virtuale, per favore fatemelo sapere.
Grazie in anticipo