Pues he realizado los ping como me dijistes y estos son los resultados
ping 192.168.1.1
PING 192.168.1.1 (192.168.1.1) 56(84) bytes of data.
From 192.168.1.11 icmp_seq=1 Destination Host Unreachable
From 192.168.1.11 icmp_seq=2 Destination Host Unreachable
From 192.168.1.11 icmp_seq=3 Destination Host Unreachable
From 192.168.1.11 icmp_seq=4 Destination Host Unreachable
From 192.168.1.11 icmp_seq=5 Destination Host Unreachable
From 192.168.1.11 icmp_seq=6 Destination Host Unreachable
From 192.168.1.11 icmp_seq=7 Destination Host Unreachable
From 192.168.1.11 icmp_seq=8 Destination Host Unreachable
From 192.168.1.11 icmp_seq=9 Destination Host Unreachable
From 192.168.1.11 icmp_seq=13 Destination Host Unreachable
–- 192.168.1.1 ping statistics---
14 packets transmitted, 0 received, +10 errors, 100% packet loss, time 13022ms
pipe 4
ping
www.google.comping: unknown host
www.google.comEn cuanto a la pregunta de si he probado por wifi conectarme a Ubuntu tengo que decirte que mi ordenador solo lo puedo conectar por cable debido a que no dispone de tarjeta wifi.
Y cabe destacar que una vez que inicio ubuntu ningun dispositivo puede conectarse al router es como si este lo bloquease.
Y en el tema del GRUB: al tener las dos particiones lo primero que hacía era iniciar directamente desde Windows XP sin darme la opcion de iniciar Ubuntu, por lo que hice lo siguiente:
Inicie desde el Live CD y me metí en la terminal
sudo mount /dev/sda4 /mnt
sudo mount --bind /dev /mnt/dev
sudo chroot /mnt
grub-install --recheck /dev/sda
sudo update-grub
y así empezó a iniciar Grub pero no me daba la opción de meterme en Windows XP asique accedí a Ubuntu y modifiqué el archivo /boot/grub/grub.cfg de la añadiendo lo siguiente:
### BEGIN /etc/grub.d/30_os-prober ###
menuentry 'Microsoft Windows XP Professional (en /dev/sda1)' --class windows --class os $menuentry_id_option 'osprober-chain-68C4847FC48450EC' {
insmod part_msdos
insmod ntfs
set root='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 68C4847FC48450EC
else
search --no-floppy --fs-uuid --set=root 68C4847FC48450EC
fi
drivemap -s (hd0) ${root}
chainloader +1
}
### END /etc/grub.d/30_os-prober ###
###BEGIN /etc/grub.d/40_custom ###
#!/bin/sh
exec tail -n +3 $0
# This file provides an easy way to add custom menu entries. Simply type the
# menu entries you want to add after this comment. Be careful not to change
# the 'exec tail' line above
#Windows XP Proffessional /dev/sda1
menuentry "Windows XP" {
insmod part_msdos
insmod ntfs
set root='(hd0,msdos1)'
search --no-floppy --fs-uuid --set dcdc98a0dc98768c
drivemap -s (hd0) ${root}
chainloader +1
}
###END /etc/grub.d/40_custom ###