You are on page 1of 5

17/08/2018 Você pode ter o REMIX OS em uma partição de um disco rígido de inicialização múltipla usando o grub: RemixOS

Você está vendo o novo Reddit. Você sempre pode  visitar o Old Reddit  ou apenas demitir este banner.

Search Reddit

r /RemixOS

Postagens

postado por u / dakra137 2 anos atrás 

Você pode ter o REMIX OS em uma partição de um disco rígido de inicialização múltipla usando o grub

Este procedimento obtém o sistema operacional REMIX rodando, depois transfere-o para uma
partição do seu disco rígido e o torna disponível como uma opção de boot via grub. Isso pressupõe
que o grub já é o gerenciador de inicialização da máquina.

Start with a USB stick.


(1) From the ISO, create REMIX OS on the stick.
(2) Boot it up, select RESIDENT mode, proceed to through getting it running.
(3) Shut it down.
Use the Power Icon at the top right of one of the items on the bottom left of your screen.
(4) Remove the stick.
(5) Boot your os of choice that is already on the machine.
(6) Create a partition on your hard drive, at least 8GB.
In my case, it was the on first hard drive, on the third partition.
In grub that is (hd0,3) and in linux terminology it is /sda3
(7) Format it as FAT32.
(8) I gave it the volume label REMIXOS
(9) Insert the USB stick with REMIX OS on it.
(10) Copy everything on the stick to the target partition, keeping the same directory structure.
(11) Put entries for REMIX OS into the appropriate grub configuration file,
sudo gedit /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.
menuentry "REMIXOS Resident mode - All your data and apps are saved" {
# mine is at (hd0,3) , yours may be elsewhere, so adjust the next line
set root=(hd0,3)
# These next two lines were unnecessary for me. YMMV
# search --set=root --label REMIXOS
# root=/dev/sda3
# If you didn't call your partition REMIXOS then change the next line accordingly.
linux /kernel initrd=/initrd.img boot=LABEL=REMIXOS disk=LABEL=REMIXOS quiet root=/dev/ram0
androidboot.hardware=remix_x86_64 androidboot.selinux=permissive quiet SRC= DATA=
CREATE_DATA_IMG=1
initrd /initrd.img
}
menuentry "REMIXOS Guest mode - NO data and apps are saved" {
https://www.reddit.com/r/RemixOS/comments/40htwc/you_can_have_remix_os_on_a_partition_of_a/ 1/5
17/08/2018 Você pode ter o REMIX OS em uma partição de um disco rígido de inicialização múltipla usando o grub: RemixOS

# mine is at (hd0,3) , yours may be elsewhere, so adjust the next line


set root=(hd0,3)
# These next two lines were unnecessary for me. YMMV
# search --set=root --label REMIXOS
# root=/dev/sda3
# If you didn't call your partition REMIXOS then change the next line accordingly.
linux / kernel initrd = / initrd.img boot = LABEL = REMIXOS disco = LABEL = REMIXOS quiet root = /
dev / ram0 androidboot.hardware = remix_x86_64 androidboot.selinux = silêncio permissivo SRC =
DATA = DATA_IN_MEM = 1
initrd /initrd.img
}
# ######################## final do passo 11

(12) Salve o arquivo


(13) Na linha de comando, regenere os arquivos de configuração usados no momento da
inicialização:
sudo update-grub
(14) Desmonte e remova a cópia do pendrive do sistema operacional REMIX OS.
(15) Encerre e reinicie.

 17 Comentários  Compartilhar  96% de votos positivos

Este encadeamento é arquivado


 Novos comentários não podem ser postados e votos não podem ser lançados

ORDENAR POR MELHOR

 dustdevil777 1 ponto · 2 anos atrás


 Se eu usasse um Partition Wizard, poderia fazer a partição extra dizer ext3 e ter mais
espaço na unidade? A única coisa que eu precisaria descobrir é como transferir arquivos
para ele, porque o Windows não o reconhecerá.
Compartilhar Salve

 GolgothBe 1 ponto · 2 anos atrás


 Você pode usar um Live-CD / USB do GNU / Linux ou no Windows usar um software
como o Paragon ExtFS (download http://www.softpedia.com/get/System/System-
Miscellaneous/Paragon-ExtFS.shtml ) ou o Open Fonte Ext2fsd ( http://www.ext2fsd.com/
).
Compartilhar Salve

 GolgothBe 1 ponto · 2 anos atrás · editada 2 anos atrás


 Se você tem alguns problemas de inicialização após o GRUB, tente adicionar este tipo de
parâmetro nesta linha

linux / kernel initrd = / initrd.img boot = LABEL = disco REMIXOS = LABEL = REMIXOS root
tranquilo = / dev / ram0 androidboot.hardware = remix_x86_64 androidboot.selinux =
SRC permissivo silencioso = DATA = DATA_IN_MEM = 1
VGA = 791

ou e
https://www.reddit.com/r/RemixOS/comments/40htwc/you_can_have_remix_os_on_a_partition_of_a/ 2/5
17/08/2018 Você pode ter o REMIX OS em uma partição de um disco rígido de inicialização múltipla usando o grub: RemixOS

DPI = 160 UVESA_MODE = 1920 x 1080

de acordo com sua resolução e DPI favorito


Para diferentes valores do modo VGA, consulte:
http://pierre.baudu.in/other/grub.vga.modes.html

Não se esqueça de desabilitar a Inicialização Segura na sua BIOS se você tiver um BIOS
UEFI. Para boot no Stick, você também deve ativar o Legacy Mode (ou o Launch CSM).

Depois, com a inicialização do Grub, não há necessidade de permanecer no Modo Legado /


Iniciar o CSM ativado.
Compartilhar Salve

 dakra137  2 pontos · 2 anos atras

 Eu adicionei
video = uvesa DPI = 110 UVESA_MODE = 1920x1080
embora minha TV de tela grande seja na verdade cerca de 55 DPI, a duplicação do DPI
torna tudo maior.
A parte inferior do https://wiki.archlinux.org/index.php/Uvesafb sugere que você
deveria: "Remover qualquer parâmetro de kernel vga = xxx - isso substitui o buffer de
quadros UVESA por um VESA padrão."
Compartilhar Salve

 [suprimido] 1 ponto · 2 anos atrás

 O que é grub?
Compartilhar Salve

 bigbozza 1 ponto · 2 anos atrás


 É um gerenciador de partida para máquinas baseadas em x86.
Compartilhar Salve

 AidenXY 1 ponto · 2 anos atrás


 Ajuste a formatação onde você coloca "#" e "pode ser onde" x "está localizado." Confunde
noviços como eu.
Mas, como estou rodando o Ubuntu, vou apenas editar a configuração do grub. Posso usar
o Boot Repair for Ubuntu? Detectaria a partição?
Compartilhar Salve

 dakra137  1 ponto · 2 anos atrás


 Thank you for catching the misformatting.
Any edits to the grub config that is produced by update-grub will be lost the next time
update-grub is run, for example when software update gives you an updated kernel. It is
better to put the edits into /etc/grub.d/40_custom save it, then sudo update-grub
I don't know whether Boot Repair would find it, but I bet it would not be clairvoyant
enough to put in things like "root=/dev/ram0 androidboot.hardware=remix_x86_64
androidboot.selinux=permissive quiet SRC= DATA= CREATE_DATA_IMG=1" ;-)
Share Save

https://www.reddit.com/r/RemixOS/comments/40htwc/you_can_have_remix_os_on_a_partition_of_a/ 3/5
17/08/2018 Você pode ter o REMIX OS em uma partição de um disco rígido de inicialização múltipla usando o grub: RemixOS

 sirdicholas 1 point · 2 years ago


 Worked great for me!! Thank you for all the leg work.
Share Save

 ggguitarg31 1 point · 2 years ago


 Sir can u give easy way that is i dont have to edit the configuration file Like if i can use
easybcd Also i read somewhere else that i can use a command while booting from usb to
enter the boot menu for hard drive and from their can install grubloader Overall, I want an
easy way of doing it Thanks in Advance
Share Save

 kamild1996 1 point · 2 years ago


 Can I skip the first three steps? I can't boot up in Resident mode, only in guest. And it says
that USB speed test failed so probably my USB stick is just too slow.
Share Save

 RedditHG 1 point · 2 years ago · edited 2 years ago


 I did all as you said but sudo update-grub on Ubuntu couldn't find Remixos partition. And
thus, no option to choose in boot menu. edit: after doing things from another distro, it
worked. Thank you for the script. :-)
Share Save

 koskr29 1 point · 2 years ago


 I tried a dual boot with windows 10 adding a remix os entry via EasyUEFI, I have the boot
files (kernel, initrd.img, bootx64.efi, grub.cfg) in the UEFI fat32 partition (dev/sda2) and the
system.img, data.img(20 GB), etc. in a NTFS partition (dev/sda5). I tried to modify the
grub.cfg file in order too boot directly RemixOS like this set timeout=0 set
gfxmode=1366x768 terminal_output gfxterm menuentry 'Remix OS' --class android-x86 {
linuxefi /kernel initrdefi=/initrd.img set root=(hd0,5) search --file --no-floppy --set=root
/system.img root=/dev/sda2/ram0 androidboot.hardware=remix_x86_64
androidboot.selinux=permissive quiet DATA= CREATE_DATA_IMG=1 initrdefi /initrd.img } But
I only get a message saying "no such file system.img" and remixos doesnt boot.
Share Save

 krmnfc 1 point · 2 years ago


 change system.img to system.sfs
Share Save

 ansobegues 1 point · 2 years ago


 FYI If you're using the new 32 bits version, you have to change
androidboot.hardware=remix_x86_64 to androidboot.hardware=remix_x86
Share Save

 krmnfc 1 point · 2 years ago · edited 2 years ago

https://www.reddit.com/r/RemixOS/comments/40htwc/you_can_have_remix_os_on_a_partition_of_a/ 4/5
17/08/2018 Você pode ter o REMIX OS em uma partição de um disco rígido de inicialização múltipla usando o grub: RemixOS

 I am stuck. Getting sysrq emergency remount r/o


EDIT: I find out what is the problem. You need to "unpack" system.sfs Do point 4 from this
guide http://forum.xda-developers.com/remix/remix-os/remix-os-installation-rooting-
t3293769
Share Save

 xodeusDK 1 point · 2 years ago · edited 2 years ago


 That's odd. I'm stuck on Detecting Android-X86.
I'm using the 32bit image for my Asus EeePC.
What I've tried.
I've tried with the sfs image. I've tried unpacking the sfs image and pointing to it in GRUB.
I've tried the parameters from isolinux.cfg in GRUB which are

androidboot.hardware=remix_x86 androidboot.selinux=permissive quiet SRC= DA

and the parameters found in the xda-thread, but everytime I'm stuck on Detecting
Android-X86 What am I doing wrong?
Is this because I'm using btrfs as fs?

UPDATE: It was because of btrfs. I've shrinked my /home partition, created a ext4 partition,
mounted it in /remix transferred the files needed and now it boots fully. But the EeePC is to
slow to run it. My System process is constantly FC'ing, and I can not get enough time to
start any apps. I hope that there will be a version for older PC's that old.
Share Save

https://www.reddit.com/r/RemixOS/comments/40htwc/you_can_have_remix_os_on_a_partition_of_a/ 5/5

You might also like