How can I get boot into an existing Windows 10 from Grub?
![Creative The name of the picture](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgO9GURib1T8z7lCwjOGLQaGtrueEthgQ8LO42ZX8cOfTqDK4jvDDpKkLFwf2J49kYCMNW7d4ABih_XCb_2UXdq5fPJDkoyg7-8g_YfRUot-XnaXkNYycsNp7lA5_TW9td0FFpLQ2APzKcZ/s1600/1.jpg)
![Creative The name of the picture](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhYQ0N5W1qAOxLP7t7iOM6O6AzbZnkXUy16s7P_CWfOb5UbTQY_aDsc727chyphenhyphen5W4IppVNernMMQeaUFTB_rFzAd95_CDt-tnwN-nBx6JyUp2duGjPaL5-VgNO41AVsA_vu30EJcipdDG409/s400/Clash+Royale+CLAN+TAG%2523URR8PPP.png)
up vote
1
down vote
favorite
I have a Lenovo Ideapad 710s-14IKB that I would like to dual boot but I'm having trouble. I apologize for the long-winded message but I believe it's all important information to understanding what I've tried and I wouldn't be posting here if I hadn't tried everything I could search for on this site already.
Prior to the issue
The laptop came preinstalled with Windows 10. When I got the machine, I reduced the partition for Windows 10 down to 100GB leaving about 400GB for Ubuntu. I had to change my UEFI settings to disable fast boot, change from RAID to AHCI for the disk controller because I am told Ubuntu does not support RAID. Then I enabled Legacy boot mode. I installed Ubuntu with a boot disk and I have been running Ubuntu ever since.
The problem
I now need to boot back into Windows 10 for a side job. I will be needed to boot into it occasionally so I'd like it to be dual boot and part of the grub menu. I booted into the BIOS setup by using the hardware button on the side of the laptop, enabled RAID mode, rebooted and I got into Windows. I then updated Windows to enable support for AHCI. I went into BIOS, changed back to AHCI mode, rebooted and got the grub menu with now Windows option.
Now I'm trying to get grub to recognize the Windows boot partition with no luck.
Attempt 1
I've tried this according to a tutorial I searched for.
mmachenry@mmachenry-laptop:~$ sudo update-grub
Generating grub configuration file ...
Found linux image: /boot/vmlinuz-4.13.0-37-generic
Found initrd image: /boot/initrd.img-4.13.0-37-generic
Found linux image: /boot/vmlinuz-4.13.0-36-generic
Found initrd image: /boot/initrd.img-4.13.0-36-generic
Found linux image: /boot/vmlinuz-4.13.0-32-generic
Found initrd image: /boot/initrd.img-4.13.0-32-generic
Found linux image: /boot/vmlinuz-4.13.0-21-generic
Found initrd image: /boot/initrd.img-4.13.0-21-generic
Found memtest86+ image: /boot/memtest86+.elf
Found memtest86+ image: /boot/memtest86+.bin
done
mmachenry@mmachenry-laptop:~$ sudo grub-install /dev/nvme0n1
Installing for i386-pc platform.
Installation finished. No error reported.
But this doesn't notice any Windows partition.
Attempt 2
I tried boot-repair, installed from another tutorial but it gives me this message when I choose the recommended repair option: "The current session is in Legacy mode. Please reboot the computer, and use this software in an EFI session. This will enable this feature. For example use a live-USB of Boot-Repair-Disk-64bit after making sure your BIO is setup to boot USB in EFI mode." The problem is that when I change the BIOS to enable UEFI mode instead of Legacy mode, the computer is bricked, I get a Lenovo bluescreen saying something went wrong and it gives me several options, on of which is to go back into the BIOS settings where I can change back to legacy mode. So it seems like UEFI mode is not supported for Ubuntu but maybe that's incorrect. Seems odd that boot-repair would demand UEFI mode if Ubuntu doesn't support it. Should I be running in Legacy mode or UEFI mode ideally?
Attempt 3
Finally I tried adding this according to a third tutorial:
mmachenry@mmachenry-laptop:~$ cat /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 "Windows"
set root=(hd0,2)
chainloader +1
I believe the numbers there should be 0 and 2 because of this:
Device Start End Sectors Size Type
/dev/nvme0n1p1 2048 534527 532480 260M EFI System
/dev/nvme0n1p2 534528 567295 32768 16M Microsoft reserved
/dev/nvme0n1p3 567296 217036799 216469504 103.2G Microsoft basic data
/dev/nvme0n1p4 945737728 998166527 52428800 25G Microsoft basic data
/dev/nvme0n1p5 998166528 1000214527 2048000 1000M Windows recovery environment
/dev/nvme0n1p6 217036800 217038847 2048 1M BIOS boot
/dev/nvme0n1p7 217038848 945737727 728698880 347.5G Linux filesystem
But I could be wrong. It basically hasn't done anything even if I set the numbers to different things like 0 3. Windows doesn't even show up on the menu. I ran sudo update-grub and got the same output as above from the last time I ran it and now Windows menu option even appears at boot.
Attempt 4
I change the entry to this
menuentry 'Windows 10'
search --fs-uuid --no-floppy --set=root 9CC3-B528
chainloader ($root)/EFI/Microsoft/Boot/bootmgfw.efi
Copying this tutorial and I get the error message "error: invalid signature" from Grub and am presented with the Grub menu once again where I can boot back into Linux.
Closing
Does anyone know how I could get this machine to dual boot? Thank you for your help. I am wondering if there's a mismatch with UEFI mode for Windows and legacy mode for Ubuntu. Do I need installations that match for both?
dual-boot grub2 uefi windows-10
add a comment |Â
up vote
1
down vote
favorite
I have a Lenovo Ideapad 710s-14IKB that I would like to dual boot but I'm having trouble. I apologize for the long-winded message but I believe it's all important information to understanding what I've tried and I wouldn't be posting here if I hadn't tried everything I could search for on this site already.
Prior to the issue
The laptop came preinstalled with Windows 10. When I got the machine, I reduced the partition for Windows 10 down to 100GB leaving about 400GB for Ubuntu. I had to change my UEFI settings to disable fast boot, change from RAID to AHCI for the disk controller because I am told Ubuntu does not support RAID. Then I enabled Legacy boot mode. I installed Ubuntu with a boot disk and I have been running Ubuntu ever since.
The problem
I now need to boot back into Windows 10 for a side job. I will be needed to boot into it occasionally so I'd like it to be dual boot and part of the grub menu. I booted into the BIOS setup by using the hardware button on the side of the laptop, enabled RAID mode, rebooted and I got into Windows. I then updated Windows to enable support for AHCI. I went into BIOS, changed back to AHCI mode, rebooted and got the grub menu with now Windows option.
Now I'm trying to get grub to recognize the Windows boot partition with no luck.
Attempt 1
I've tried this according to a tutorial I searched for.
mmachenry@mmachenry-laptop:~$ sudo update-grub
Generating grub configuration file ...
Found linux image: /boot/vmlinuz-4.13.0-37-generic
Found initrd image: /boot/initrd.img-4.13.0-37-generic
Found linux image: /boot/vmlinuz-4.13.0-36-generic
Found initrd image: /boot/initrd.img-4.13.0-36-generic
Found linux image: /boot/vmlinuz-4.13.0-32-generic
Found initrd image: /boot/initrd.img-4.13.0-32-generic
Found linux image: /boot/vmlinuz-4.13.0-21-generic
Found initrd image: /boot/initrd.img-4.13.0-21-generic
Found memtest86+ image: /boot/memtest86+.elf
Found memtest86+ image: /boot/memtest86+.bin
done
mmachenry@mmachenry-laptop:~$ sudo grub-install /dev/nvme0n1
Installing for i386-pc platform.
Installation finished. No error reported.
But this doesn't notice any Windows partition.
Attempt 2
I tried boot-repair, installed from another tutorial but it gives me this message when I choose the recommended repair option: "The current session is in Legacy mode. Please reboot the computer, and use this software in an EFI session. This will enable this feature. For example use a live-USB of Boot-Repair-Disk-64bit after making sure your BIO is setup to boot USB in EFI mode." The problem is that when I change the BIOS to enable UEFI mode instead of Legacy mode, the computer is bricked, I get a Lenovo bluescreen saying something went wrong and it gives me several options, on of which is to go back into the BIOS settings where I can change back to legacy mode. So it seems like UEFI mode is not supported for Ubuntu but maybe that's incorrect. Seems odd that boot-repair would demand UEFI mode if Ubuntu doesn't support it. Should I be running in Legacy mode or UEFI mode ideally?
Attempt 3
Finally I tried adding this according to a third tutorial:
mmachenry@mmachenry-laptop:~$ cat /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 "Windows"
set root=(hd0,2)
chainloader +1
I believe the numbers there should be 0 and 2 because of this:
Device Start End Sectors Size Type
/dev/nvme0n1p1 2048 534527 532480 260M EFI System
/dev/nvme0n1p2 534528 567295 32768 16M Microsoft reserved
/dev/nvme0n1p3 567296 217036799 216469504 103.2G Microsoft basic data
/dev/nvme0n1p4 945737728 998166527 52428800 25G Microsoft basic data
/dev/nvme0n1p5 998166528 1000214527 2048000 1000M Windows recovery environment
/dev/nvme0n1p6 217036800 217038847 2048 1M BIOS boot
/dev/nvme0n1p7 217038848 945737727 728698880 347.5G Linux filesystem
But I could be wrong. It basically hasn't done anything even if I set the numbers to different things like 0 3. Windows doesn't even show up on the menu. I ran sudo update-grub and got the same output as above from the last time I ran it and now Windows menu option even appears at boot.
Attempt 4
I change the entry to this
menuentry 'Windows 10'
search --fs-uuid --no-floppy --set=root 9CC3-B528
chainloader ($root)/EFI/Microsoft/Boot/bootmgfw.efi
Copying this tutorial and I get the error message "error: invalid signature" from Grub and am presented with the Grub menu once again where I can boot back into Linux.
Closing
Does anyone know how I could get this machine to dual boot? Thank you for your help. I am wondering if there's a mismatch with UEFI mode for Windows and legacy mode for Ubuntu. Do I need installations that match for both?
dual-boot grub2 uefi windows-10
add a comment |Â
up vote
1
down vote
favorite
up vote
1
down vote
favorite
I have a Lenovo Ideapad 710s-14IKB that I would like to dual boot but I'm having trouble. I apologize for the long-winded message but I believe it's all important information to understanding what I've tried and I wouldn't be posting here if I hadn't tried everything I could search for on this site already.
Prior to the issue
The laptop came preinstalled with Windows 10. When I got the machine, I reduced the partition for Windows 10 down to 100GB leaving about 400GB for Ubuntu. I had to change my UEFI settings to disable fast boot, change from RAID to AHCI for the disk controller because I am told Ubuntu does not support RAID. Then I enabled Legacy boot mode. I installed Ubuntu with a boot disk and I have been running Ubuntu ever since.
The problem
I now need to boot back into Windows 10 for a side job. I will be needed to boot into it occasionally so I'd like it to be dual boot and part of the grub menu. I booted into the BIOS setup by using the hardware button on the side of the laptop, enabled RAID mode, rebooted and I got into Windows. I then updated Windows to enable support for AHCI. I went into BIOS, changed back to AHCI mode, rebooted and got the grub menu with now Windows option.
Now I'm trying to get grub to recognize the Windows boot partition with no luck.
Attempt 1
I've tried this according to a tutorial I searched for.
mmachenry@mmachenry-laptop:~$ sudo update-grub
Generating grub configuration file ...
Found linux image: /boot/vmlinuz-4.13.0-37-generic
Found initrd image: /boot/initrd.img-4.13.0-37-generic
Found linux image: /boot/vmlinuz-4.13.0-36-generic
Found initrd image: /boot/initrd.img-4.13.0-36-generic
Found linux image: /boot/vmlinuz-4.13.0-32-generic
Found initrd image: /boot/initrd.img-4.13.0-32-generic
Found linux image: /boot/vmlinuz-4.13.0-21-generic
Found initrd image: /boot/initrd.img-4.13.0-21-generic
Found memtest86+ image: /boot/memtest86+.elf
Found memtest86+ image: /boot/memtest86+.bin
done
mmachenry@mmachenry-laptop:~$ sudo grub-install /dev/nvme0n1
Installing for i386-pc platform.
Installation finished. No error reported.
But this doesn't notice any Windows partition.
Attempt 2
I tried boot-repair, installed from another tutorial but it gives me this message when I choose the recommended repair option: "The current session is in Legacy mode. Please reboot the computer, and use this software in an EFI session. This will enable this feature. For example use a live-USB of Boot-Repair-Disk-64bit after making sure your BIO is setup to boot USB in EFI mode." The problem is that when I change the BIOS to enable UEFI mode instead of Legacy mode, the computer is bricked, I get a Lenovo bluescreen saying something went wrong and it gives me several options, on of which is to go back into the BIOS settings where I can change back to legacy mode. So it seems like UEFI mode is not supported for Ubuntu but maybe that's incorrect. Seems odd that boot-repair would demand UEFI mode if Ubuntu doesn't support it. Should I be running in Legacy mode or UEFI mode ideally?
Attempt 3
Finally I tried adding this according to a third tutorial:
mmachenry@mmachenry-laptop:~$ cat /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 "Windows"
set root=(hd0,2)
chainloader +1
I believe the numbers there should be 0 and 2 because of this:
Device Start End Sectors Size Type
/dev/nvme0n1p1 2048 534527 532480 260M EFI System
/dev/nvme0n1p2 534528 567295 32768 16M Microsoft reserved
/dev/nvme0n1p3 567296 217036799 216469504 103.2G Microsoft basic data
/dev/nvme0n1p4 945737728 998166527 52428800 25G Microsoft basic data
/dev/nvme0n1p5 998166528 1000214527 2048000 1000M Windows recovery environment
/dev/nvme0n1p6 217036800 217038847 2048 1M BIOS boot
/dev/nvme0n1p7 217038848 945737727 728698880 347.5G Linux filesystem
But I could be wrong. It basically hasn't done anything even if I set the numbers to different things like 0 3. Windows doesn't even show up on the menu. I ran sudo update-grub and got the same output as above from the last time I ran it and now Windows menu option even appears at boot.
Attempt 4
I change the entry to this
menuentry 'Windows 10'
search --fs-uuid --no-floppy --set=root 9CC3-B528
chainloader ($root)/EFI/Microsoft/Boot/bootmgfw.efi
Copying this tutorial and I get the error message "error: invalid signature" from Grub and am presented with the Grub menu once again where I can boot back into Linux.
Closing
Does anyone know how I could get this machine to dual boot? Thank you for your help. I am wondering if there's a mismatch with UEFI mode for Windows and legacy mode for Ubuntu. Do I need installations that match for both?
dual-boot grub2 uefi windows-10
I have a Lenovo Ideapad 710s-14IKB that I would like to dual boot but I'm having trouble. I apologize for the long-winded message but I believe it's all important information to understanding what I've tried and I wouldn't be posting here if I hadn't tried everything I could search for on this site already.
Prior to the issue
The laptop came preinstalled with Windows 10. When I got the machine, I reduced the partition for Windows 10 down to 100GB leaving about 400GB for Ubuntu. I had to change my UEFI settings to disable fast boot, change from RAID to AHCI for the disk controller because I am told Ubuntu does not support RAID. Then I enabled Legacy boot mode. I installed Ubuntu with a boot disk and I have been running Ubuntu ever since.
The problem
I now need to boot back into Windows 10 for a side job. I will be needed to boot into it occasionally so I'd like it to be dual boot and part of the grub menu. I booted into the BIOS setup by using the hardware button on the side of the laptop, enabled RAID mode, rebooted and I got into Windows. I then updated Windows to enable support for AHCI. I went into BIOS, changed back to AHCI mode, rebooted and got the grub menu with now Windows option.
Now I'm trying to get grub to recognize the Windows boot partition with no luck.
Attempt 1
I've tried this according to a tutorial I searched for.
mmachenry@mmachenry-laptop:~$ sudo update-grub
Generating grub configuration file ...
Found linux image: /boot/vmlinuz-4.13.0-37-generic
Found initrd image: /boot/initrd.img-4.13.0-37-generic
Found linux image: /boot/vmlinuz-4.13.0-36-generic
Found initrd image: /boot/initrd.img-4.13.0-36-generic
Found linux image: /boot/vmlinuz-4.13.0-32-generic
Found initrd image: /boot/initrd.img-4.13.0-32-generic
Found linux image: /boot/vmlinuz-4.13.0-21-generic
Found initrd image: /boot/initrd.img-4.13.0-21-generic
Found memtest86+ image: /boot/memtest86+.elf
Found memtest86+ image: /boot/memtest86+.bin
done
mmachenry@mmachenry-laptop:~$ sudo grub-install /dev/nvme0n1
Installing for i386-pc platform.
Installation finished. No error reported.
But this doesn't notice any Windows partition.
Attempt 2
I tried boot-repair, installed from another tutorial but it gives me this message when I choose the recommended repair option: "The current session is in Legacy mode. Please reboot the computer, and use this software in an EFI session. This will enable this feature. For example use a live-USB of Boot-Repair-Disk-64bit after making sure your BIO is setup to boot USB in EFI mode." The problem is that when I change the BIOS to enable UEFI mode instead of Legacy mode, the computer is bricked, I get a Lenovo bluescreen saying something went wrong and it gives me several options, on of which is to go back into the BIOS settings where I can change back to legacy mode. So it seems like UEFI mode is not supported for Ubuntu but maybe that's incorrect. Seems odd that boot-repair would demand UEFI mode if Ubuntu doesn't support it. Should I be running in Legacy mode or UEFI mode ideally?
Attempt 3
Finally I tried adding this according to a third tutorial:
mmachenry@mmachenry-laptop:~$ cat /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 "Windows"
set root=(hd0,2)
chainloader +1
I believe the numbers there should be 0 and 2 because of this:
Device Start End Sectors Size Type
/dev/nvme0n1p1 2048 534527 532480 260M EFI System
/dev/nvme0n1p2 534528 567295 32768 16M Microsoft reserved
/dev/nvme0n1p3 567296 217036799 216469504 103.2G Microsoft basic data
/dev/nvme0n1p4 945737728 998166527 52428800 25G Microsoft basic data
/dev/nvme0n1p5 998166528 1000214527 2048000 1000M Windows recovery environment
/dev/nvme0n1p6 217036800 217038847 2048 1M BIOS boot
/dev/nvme0n1p7 217038848 945737727 728698880 347.5G Linux filesystem
But I could be wrong. It basically hasn't done anything even if I set the numbers to different things like 0 3. Windows doesn't even show up on the menu. I ran sudo update-grub and got the same output as above from the last time I ran it and now Windows menu option even appears at boot.
Attempt 4
I change the entry to this
menuentry 'Windows 10'
search --fs-uuid --no-floppy --set=root 9CC3-B528
chainloader ($root)/EFI/Microsoft/Boot/bootmgfw.efi
Copying this tutorial and I get the error message "error: invalid signature" from Grub and am presented with the Grub menu once again where I can boot back into Linux.
Closing
Does anyone know how I could get this machine to dual boot? Thank you for your help. I am wondering if there's a mismatch with UEFI mode for Windows and legacy mode for Ubuntu. Do I need installations that match for both?
dual-boot grub2 uefi windows-10
dual-boot grub2 uefi windows-10
edited Mar 28 at 8:26
asked Mar 28 at 4:36
![](https://i.stack.imgur.com/GB6bE.jpg?s=32&g=1)
![](https://i.stack.imgur.com/GB6bE.jpg?s=32&g=1)
mmachenry
1064
1064
add a comment |Â
add a comment |Â
2 Answers
2
active
oldest
votes
up vote
0
down vote
- Edit /etc/default/grub with your editor of choice and add
GRUB_DISABLE_OS_PROBER=false
and save the file sudo update-grub
- Reboot
Hope Windows shall be detected this time.
Sadly it has not worked.
â mmachenry
Mar 28 at 8:02
add a comment |Â
up vote
0
down vote
You can also use windows boot manager look for instructions on that I run my dual boot of ubuntu and windows 10 the same way.
add a comment |Â
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
- Edit /etc/default/grub with your editor of choice and add
GRUB_DISABLE_OS_PROBER=false
and save the file sudo update-grub
- Reboot
Hope Windows shall be detected this time.
Sadly it has not worked.
â mmachenry
Mar 28 at 8:02
add a comment |Â
up vote
0
down vote
- Edit /etc/default/grub with your editor of choice and add
GRUB_DISABLE_OS_PROBER=false
and save the file sudo update-grub
- Reboot
Hope Windows shall be detected this time.
Sadly it has not worked.
â mmachenry
Mar 28 at 8:02
add a comment |Â
up vote
0
down vote
up vote
0
down vote
- Edit /etc/default/grub with your editor of choice and add
GRUB_DISABLE_OS_PROBER=false
and save the file sudo update-grub
- Reboot
Hope Windows shall be detected this time.
- Edit /etc/default/grub with your editor of choice and add
GRUB_DISABLE_OS_PROBER=false
and save the file sudo update-grub
- Reboot
Hope Windows shall be detected this time.
answered Mar 28 at 4:56
Arijit Chatterjee
8411311
8411311
Sadly it has not worked.
â mmachenry
Mar 28 at 8:02
add a comment |Â
Sadly it has not worked.
â mmachenry
Mar 28 at 8:02
Sadly it has not worked.
â mmachenry
Mar 28 at 8:02
Sadly it has not worked.
â mmachenry
Mar 28 at 8:02
add a comment |Â
up vote
0
down vote
You can also use windows boot manager look for instructions on that I run my dual boot of ubuntu and windows 10 the same way.
add a comment |Â
up vote
0
down vote
You can also use windows boot manager look for instructions on that I run my dual boot of ubuntu and windows 10 the same way.
add a comment |Â
up vote
0
down vote
up vote
0
down vote
You can also use windows boot manager look for instructions on that I run my dual boot of ubuntu and windows 10 the same way.
You can also use windows boot manager look for instructions on that I run my dual boot of ubuntu and windows 10 the same way.
answered Mar 28 at 5:46
obake
11
11
add a comment |Â
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1019838%2fhow-can-i-get-boot-into-an-existing-windows-10-from-grub%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password