InstallDebian9
De Wikicima
(Diferencias entre revisiones)
(→Acceder partición Windows desde Linux) |
(→Cambiar el orden de GRUB) |
||
Línea 63: | Línea 63: | ||
== Cambiar el orden de GRUB == |
== Cambiar el orden de GRUB == |
||
− | Para setear que el GRUB tenga cómo primera opción el Windows... |
+ | Para setear que el GRUB tenga cómo primera opción el Windows... [https://askubuntu.com/questions/100232/how-do-i-change-the-grub-boot-order de la web...] |
− | # https://askubuntu.com/questions/100232/how-do-i-change-the-grub-boot-order |
+ | * Pasando a modo root |
+ | <PRE> |
||
+ | $ su |
||
+ | </PRE> |
||
− | * Make bkcup... |
+ | * Crear una copia bkcup... |
+ | <PRE> |
||
# cp /etc/default/grub /etc/default/grub.bak |
# cp /etc/default/grub /etc/default/grub.bak |
||
+ | </PRE> |
||
− | * Looking for the current order |
+ | * Mirar el orden actual |
+ | <PRE> |
||
# cat /boot/grub/grub.cfg | grep menuentry |
# cat /boot/grub/grub.cfg | grep menuentry |
||
+ | </PRE> |
||
− | * Change number in GRUB_DEFAULT=0 |
+ | * Cambiar el número en <code>GRUB_DEFAULT=0</code> |
+ | <PRE> |
||
# vim /etc/default/grub |
# vim /etc/default/grub |
||
+ | </PRE> |
||
− | * Update the GRUB menu |
+ | * Actualizar el menú GRUB |
+ | <PRE> |
||
# update-grub |
# update-grub |
||
+ | </PRE> |
||
+ | |||
+ | * Salir de modo root |
||
+ | <PRE> |
||
+ | # exit |
||
+ | </PRE> |
Revisión de 14:21 27 abr 2018
Instalación Debian 9
Otros
Acceder partición Windows desde Linux
Pasos a seguir para ver la particion de WINDOWS desde Debian
- Entramos como root
$ su
- Se crea el directorio donde la particion de WINDOWS se va a montar
# mkdir /media/magui/WINDOWS
- Se da la propiedad a a usaria
# chwown magui:magui /media/magui/WINDOWS
- Listado de particiones, para saber cuál se busca exactamente
# gparted &
- Se busca a UUID de la particion
# blkid /dev/sda1: LABEL="Windows RE tools" UUID="72143D4B143D1417" TYPE="ntfs" PARTLABEL="Basic data partition" PARTUUID="f2568469-c823-49b8-93c1-e8e6caccfd2d" /dev/sda2: LABEL="SYSTEM" UUID="1C3F-C288" TYPE="vfat" PARTLABEL="EFI system partition" PARTUUID="575d8289-036f-4cc2-bdbb-f575a32d38ac" /dev/sda3: PARTLABEL="Microsoft reserved partition" PARTUUID="9cfa5e5a-1f58-4c3d-b7d2-6fa73aa0a596" /dev/sda4: LABEL="Windows" UUID="56D479D0D479B33B" TYPE="ntfs" PARTLABEL="Basic data partition" PARTUUID="013cde20-6516-44d2-8602-55c842e0394f" /dev/sda5: UUID="0A74450D7444FD47" TYPE="ntfs" PARTUUID="1fac8f52-6554-4f89-92f6-3c3adfc490dd" /dev/sda6: LABEL="Recovery image" UUID="825043A050439A35" TYPE="ntfs" PARTLABEL="Basic data partition" PARTUUID="f6c4735b-e246-4099-8071-ade6f70e798a" /dev/sda7: UUID="2a7a4fdd-7b2b-41eb-a85c-16e2c5813fec" TYPE="ext4" PARTUUID="4bcfb041-63e3-4c9f-b396-3e03930ca9a8" /dev/sda8: UUID="ae8404e0-7c37-44ad-b537-6467ea4db3a6" TYPE="swap" PARTUUID="675e0f24-8046-4c19-9136-07dad61d176a" /dev/sda9: UUID="8A46-3180" TYPE="vfat" PARTUUID="f7b58db1-5f1c-4bd5-bde9-ee8128af0abf" /dev/sda10: UUID="d7c4020c-ac30-419e-91da-d043f6394025" TYPE="ext4" PARTUUID="7a0db5ed-371d-4f9a-9798-6a34b1481039"
- En este caso, es la particion sda4. Se anade la informacion en
/etc/fstab
# Windows particion /dev/sda4 UUID=56D479D0D479B33B /media/magui/WINDOWS ntfs user,auto 0 0
- Se actualiza la lista de discos montados en el sistema
# mount -a
- Se sale de root
# exit
- Se verifica que haya ido bien:
$ ls /media/magui/WINDOWS/ Archivos de programa Oatools Recovery bootmgr OpenGrADS Recovery.txt BOOTNXT pagefile.sys $Recycle.Bin Documents and Settings PerfLogs swapfile.sys Drivers PositivoBGH System Volume Information hiberfil.sys ProgramData Temp Intel Program Files Users MSOCache Program Files (x86) Windows
Cambiar el orden de GRUB
Para setear que el GRUB tenga cómo primera opción el Windows... de la web...
- Pasando a modo root
$ su
- Crear una copia bkcup...
# cp /etc/default/grub /etc/default/grub.bak
- Mirar el orden actual
# cat /boot/grub/grub.cfg | grep menuentry
- Cambiar el número en
GRUB_DEFAULT=0
# vim /etc/default/grub
- Actualizar el menú GRUB
# update-grub
- Salir de modo root
# exit