How do I restore my system OS back to its original condition after attempting to install Kali linux tools onto Ubuntu 16.04?
![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
4
down vote
favorite
I was attempting to install some Kali linux tools onto my computer running Ubuntu 16.04 using katoolin, and the majority of it worked out and installed properly, but when I tried to upgrade it an error came up. Eventually after some tinkering, the available updates from katoolin disappeared. Now when I boot Ubuntu does not even show up as Ubuntu, it says Kali Linux on the GRUB menu instead. I am not sure how to go about attempting to solve any of these problems as I am pretty new to Linux, so I was hoping someone out there could help.
Also, as of now GNOME is not loading, so I am at the stage of using a virtual console (I got there by pressing Ctrl+Alt+F1).
16.04 grub2 software-uninstall katoolin
add a comment |Â
up vote
4
down vote
favorite
I was attempting to install some Kali linux tools onto my computer running Ubuntu 16.04 using katoolin, and the majority of it worked out and installed properly, but when I tried to upgrade it an error came up. Eventually after some tinkering, the available updates from katoolin disappeared. Now when I boot Ubuntu does not even show up as Ubuntu, it says Kali Linux on the GRUB menu instead. I am not sure how to go about attempting to solve any of these problems as I am pretty new to Linux, so I was hoping someone out there could help.
Also, as of now GNOME is not loading, so I am at the stage of using a virtual console (I got there by pressing Ctrl+Alt+F1).
16.04 grub2 software-uninstall katoolin
add a comment |Â
up vote
4
down vote
favorite
up vote
4
down vote
favorite
I was attempting to install some Kali linux tools onto my computer running Ubuntu 16.04 using katoolin, and the majority of it worked out and installed properly, but when I tried to upgrade it an error came up. Eventually after some tinkering, the available updates from katoolin disappeared. Now when I boot Ubuntu does not even show up as Ubuntu, it says Kali Linux on the GRUB menu instead. I am not sure how to go about attempting to solve any of these problems as I am pretty new to Linux, so I was hoping someone out there could help.
Also, as of now GNOME is not loading, so I am at the stage of using a virtual console (I got there by pressing Ctrl+Alt+F1).
16.04 grub2 software-uninstall katoolin
I was attempting to install some Kali linux tools onto my computer running Ubuntu 16.04 using katoolin, and the majority of it worked out and installed properly, but when I tried to upgrade it an error came up. Eventually after some tinkering, the available updates from katoolin disappeared. Now when I boot Ubuntu does not even show up as Ubuntu, it says Kali Linux on the GRUB menu instead. I am not sure how to go about attempting to solve any of these problems as I am pretty new to Linux, so I was hoping someone out there could help.
Also, as of now GNOME is not loading, so I am at the stage of using a virtual console (I got there by pressing Ctrl+Alt+F1).
16.04 grub2 software-uninstall katoolin
edited Mar 23 at 9:27
![](https://i.stack.imgur.com/PLDEz.png?s=32&g=1)
![](https://i.stack.imgur.com/PLDEz.png?s=32&g=1)
Saud AlFadhli
1053
1053
asked Mar 23 at 4:06
![](https://lh4.googleusercontent.com/-xM5pL3dBx2U/AAAAAAAAAAI/AAAAAAAAAGM/WXiKNAa7FCo/photo.jpg?sz=32)
![](https://lh4.googleusercontent.com/-xM5pL3dBx2U/AAAAAAAAAAI/AAAAAAAAAGM/WXiKNAa7FCo/photo.jpg?sz=32)
Kaushik
241
241
add a comment |Â
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
5
down vote
All actions with apt are logged. These files are available in
/var/log/apt/
. To view the most recent history log run:less /var/log/apt/history.log
This will show you the changes that you made installing Katoolin and Kali linux tools.
Copy these changes from
/var/log/apt/history.log
into a text file and save the file.Undo all the changes that you made since installing Katoolin one by one. Take your time and check your work as you go to avoid making typing errors.
Remove Katoolin.
sudo rm -r /usr/bin/katoolin
Important! Look in your software sources for any repositories added by Katoolin and remove these repositories from your software sources. You are going to be reinstalling the Ubuntu desktop system in step 7, and if you don't remove all the software sources that were added by Katoolin it may interfere with step 7.
Check what software sources have been added by Katoolin.
cat /etc/apt/sources.list | grep kali
If you see a kali software source, remove its deb and deb-src from sources.list and then save the file.
Finish by manually checking your software sources in
/etc/apt/sources.list
and from the Dash by clicking on Software & Updates to open a Software & Updates window -> Other Software tab to make sure that you removed all the software sources that were added by Katoolin.Update the list of available software.
sudo apt update
If you are using Ubuntu, finish by reinstalling the Ubuntu desktop system.
sudo apt-cache depends ubuntu-desktop | grep '[ |]Depends: [^<]' | cut -d: -f2 | tr -d ' ' | xargs sudo apt-get --reinstall install -y
Install grub to the MBR of your boot drive with these commands:
sudo apt-get --reinstall install base-files/xenial-updates && sudo reboot
sudo os-prober
sudo update-grubWhen you have completed these steps, you may reboot the computer.
sudo reboot
Before installing katoolin again read the last section of this answer for advice about how to prevent the same problem from reoccurring.
I think it goes deeper than the desktop. If grub is reporting kali, I think his core system has been updated to kali.
â ravery
Mar 23 at 4:20
2
@ravery katoolin frequently causes this error in the GRUB menu. His core system has not been updated to Kali, only the entry in the GRUB menu has been superficially changed from Ubuntu to Kali as indicated in step 8 of this answer and also in this answer: askubuntu.com/questions/836270/â¦
â karel
Mar 23 at 4:24
ubuntu-desktop
is just a lowly meta-package soapt install --reinstall
won't do anything more than a plain install would. There's an another answer for reinstalling dependencies.
â Oliâ¦
Mar 23 at 10:11
How would I go about undoing all of the upgrades. I was thinking about using the purge command, which I found online, but then I would have to type all 900 packages out individually because I cant do anything but type. Is there a simple way to undo all of the things I did. All of it was just me upgrading using apt-get upgrade and me using autoremove. I am assuming all I need to do is undo the upgrading parts. I feel like there is a smarter way to do it. I can only get to the console (I think that is what its called, I got there using ctrl alt f1), no gui, so what can I do? Thanks for the ans.!
â Kaushik
Mar 24 at 0:40
katoolin also installs packages from GitHub. Removing multiple packages that were installed from GitHub will be a lot of hard work. Finding and removing orphaned packages (with deborphan) left over after removing packages that were quickly uninstalled with apt is even more hard work, and can also break your system if not done slowly and carefully. Fortunately it is not necessary to use deborphan.
â karel
Mar 24 at 1:19
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
5
down vote
All actions with apt are logged. These files are available in
/var/log/apt/
. To view the most recent history log run:less /var/log/apt/history.log
This will show you the changes that you made installing Katoolin and Kali linux tools.
Copy these changes from
/var/log/apt/history.log
into a text file and save the file.Undo all the changes that you made since installing Katoolin one by one. Take your time and check your work as you go to avoid making typing errors.
Remove Katoolin.
sudo rm -r /usr/bin/katoolin
Important! Look in your software sources for any repositories added by Katoolin and remove these repositories from your software sources. You are going to be reinstalling the Ubuntu desktop system in step 7, and if you don't remove all the software sources that were added by Katoolin it may interfere with step 7.
Check what software sources have been added by Katoolin.
cat /etc/apt/sources.list | grep kali
If you see a kali software source, remove its deb and deb-src from sources.list and then save the file.
Finish by manually checking your software sources in
/etc/apt/sources.list
and from the Dash by clicking on Software & Updates to open a Software & Updates window -> Other Software tab to make sure that you removed all the software sources that were added by Katoolin.Update the list of available software.
sudo apt update
If you are using Ubuntu, finish by reinstalling the Ubuntu desktop system.
sudo apt-cache depends ubuntu-desktop | grep '[ |]Depends: [^<]' | cut -d: -f2 | tr -d ' ' | xargs sudo apt-get --reinstall install -y
Install grub to the MBR of your boot drive with these commands:
sudo apt-get --reinstall install base-files/xenial-updates && sudo reboot
sudo os-prober
sudo update-grubWhen you have completed these steps, you may reboot the computer.
sudo reboot
Before installing katoolin again read the last section of this answer for advice about how to prevent the same problem from reoccurring.
I think it goes deeper than the desktop. If grub is reporting kali, I think his core system has been updated to kali.
â ravery
Mar 23 at 4:20
2
@ravery katoolin frequently causes this error in the GRUB menu. His core system has not been updated to Kali, only the entry in the GRUB menu has been superficially changed from Ubuntu to Kali as indicated in step 8 of this answer and also in this answer: askubuntu.com/questions/836270/â¦
â karel
Mar 23 at 4:24
ubuntu-desktop
is just a lowly meta-package soapt install --reinstall
won't do anything more than a plain install would. There's an another answer for reinstalling dependencies.
â Oliâ¦
Mar 23 at 10:11
How would I go about undoing all of the upgrades. I was thinking about using the purge command, which I found online, but then I would have to type all 900 packages out individually because I cant do anything but type. Is there a simple way to undo all of the things I did. All of it was just me upgrading using apt-get upgrade and me using autoremove. I am assuming all I need to do is undo the upgrading parts. I feel like there is a smarter way to do it. I can only get to the console (I think that is what its called, I got there using ctrl alt f1), no gui, so what can I do? Thanks for the ans.!
â Kaushik
Mar 24 at 0:40
katoolin also installs packages from GitHub. Removing multiple packages that were installed from GitHub will be a lot of hard work. Finding and removing orphaned packages (with deborphan) left over after removing packages that were quickly uninstalled with apt is even more hard work, and can also break your system if not done slowly and carefully. Fortunately it is not necessary to use deborphan.
â karel
Mar 24 at 1:19
add a comment |Â
up vote
5
down vote
All actions with apt are logged. These files are available in
/var/log/apt/
. To view the most recent history log run:less /var/log/apt/history.log
This will show you the changes that you made installing Katoolin and Kali linux tools.
Copy these changes from
/var/log/apt/history.log
into a text file and save the file.Undo all the changes that you made since installing Katoolin one by one. Take your time and check your work as you go to avoid making typing errors.
Remove Katoolin.
sudo rm -r /usr/bin/katoolin
Important! Look in your software sources for any repositories added by Katoolin and remove these repositories from your software sources. You are going to be reinstalling the Ubuntu desktop system in step 7, and if you don't remove all the software sources that were added by Katoolin it may interfere with step 7.
Check what software sources have been added by Katoolin.
cat /etc/apt/sources.list | grep kali
If you see a kali software source, remove its deb and deb-src from sources.list and then save the file.
Finish by manually checking your software sources in
/etc/apt/sources.list
and from the Dash by clicking on Software & Updates to open a Software & Updates window -> Other Software tab to make sure that you removed all the software sources that were added by Katoolin.Update the list of available software.
sudo apt update
If you are using Ubuntu, finish by reinstalling the Ubuntu desktop system.
sudo apt-cache depends ubuntu-desktop | grep '[ |]Depends: [^<]' | cut -d: -f2 | tr -d ' ' | xargs sudo apt-get --reinstall install -y
Install grub to the MBR of your boot drive with these commands:
sudo apt-get --reinstall install base-files/xenial-updates && sudo reboot
sudo os-prober
sudo update-grubWhen you have completed these steps, you may reboot the computer.
sudo reboot
Before installing katoolin again read the last section of this answer for advice about how to prevent the same problem from reoccurring.
I think it goes deeper than the desktop. If grub is reporting kali, I think his core system has been updated to kali.
â ravery
Mar 23 at 4:20
2
@ravery katoolin frequently causes this error in the GRUB menu. His core system has not been updated to Kali, only the entry in the GRUB menu has been superficially changed from Ubuntu to Kali as indicated in step 8 of this answer and also in this answer: askubuntu.com/questions/836270/â¦
â karel
Mar 23 at 4:24
ubuntu-desktop
is just a lowly meta-package soapt install --reinstall
won't do anything more than a plain install would. There's an another answer for reinstalling dependencies.
â Oliâ¦
Mar 23 at 10:11
How would I go about undoing all of the upgrades. I was thinking about using the purge command, which I found online, but then I would have to type all 900 packages out individually because I cant do anything but type. Is there a simple way to undo all of the things I did. All of it was just me upgrading using apt-get upgrade and me using autoremove. I am assuming all I need to do is undo the upgrading parts. I feel like there is a smarter way to do it. I can only get to the console (I think that is what its called, I got there using ctrl alt f1), no gui, so what can I do? Thanks for the ans.!
â Kaushik
Mar 24 at 0:40
katoolin also installs packages from GitHub. Removing multiple packages that were installed from GitHub will be a lot of hard work. Finding and removing orphaned packages (with deborphan) left over after removing packages that were quickly uninstalled with apt is even more hard work, and can also break your system if not done slowly and carefully. Fortunately it is not necessary to use deborphan.
â karel
Mar 24 at 1:19
add a comment |Â
up vote
5
down vote
up vote
5
down vote
All actions with apt are logged. These files are available in
/var/log/apt/
. To view the most recent history log run:less /var/log/apt/history.log
This will show you the changes that you made installing Katoolin and Kali linux tools.
Copy these changes from
/var/log/apt/history.log
into a text file and save the file.Undo all the changes that you made since installing Katoolin one by one. Take your time and check your work as you go to avoid making typing errors.
Remove Katoolin.
sudo rm -r /usr/bin/katoolin
Important! Look in your software sources for any repositories added by Katoolin and remove these repositories from your software sources. You are going to be reinstalling the Ubuntu desktop system in step 7, and if you don't remove all the software sources that were added by Katoolin it may interfere with step 7.
Check what software sources have been added by Katoolin.
cat /etc/apt/sources.list | grep kali
If you see a kali software source, remove its deb and deb-src from sources.list and then save the file.
Finish by manually checking your software sources in
/etc/apt/sources.list
and from the Dash by clicking on Software & Updates to open a Software & Updates window -> Other Software tab to make sure that you removed all the software sources that were added by Katoolin.Update the list of available software.
sudo apt update
If you are using Ubuntu, finish by reinstalling the Ubuntu desktop system.
sudo apt-cache depends ubuntu-desktop | grep '[ |]Depends: [^<]' | cut -d: -f2 | tr -d ' ' | xargs sudo apt-get --reinstall install -y
Install grub to the MBR of your boot drive with these commands:
sudo apt-get --reinstall install base-files/xenial-updates && sudo reboot
sudo os-prober
sudo update-grubWhen you have completed these steps, you may reboot the computer.
sudo reboot
Before installing katoolin again read the last section of this answer for advice about how to prevent the same problem from reoccurring.
All actions with apt are logged. These files are available in
/var/log/apt/
. To view the most recent history log run:less /var/log/apt/history.log
This will show you the changes that you made installing Katoolin and Kali linux tools.
Copy these changes from
/var/log/apt/history.log
into a text file and save the file.Undo all the changes that you made since installing Katoolin one by one. Take your time and check your work as you go to avoid making typing errors.
Remove Katoolin.
sudo rm -r /usr/bin/katoolin
Important! Look in your software sources for any repositories added by Katoolin and remove these repositories from your software sources. You are going to be reinstalling the Ubuntu desktop system in step 7, and if you don't remove all the software sources that were added by Katoolin it may interfere with step 7.
Check what software sources have been added by Katoolin.
cat /etc/apt/sources.list | grep kali
If you see a kali software source, remove its deb and deb-src from sources.list and then save the file.
Finish by manually checking your software sources in
/etc/apt/sources.list
and from the Dash by clicking on Software & Updates to open a Software & Updates window -> Other Software tab to make sure that you removed all the software sources that were added by Katoolin.Update the list of available software.
sudo apt update
If you are using Ubuntu, finish by reinstalling the Ubuntu desktop system.
sudo apt-cache depends ubuntu-desktop | grep '[ |]Depends: [^<]' | cut -d: -f2 | tr -d ' ' | xargs sudo apt-get --reinstall install -y
Install grub to the MBR of your boot drive with these commands:
sudo apt-get --reinstall install base-files/xenial-updates && sudo reboot
sudo os-prober
sudo update-grubWhen you have completed these steps, you may reboot the computer.
sudo reboot
Before installing katoolin again read the last section of this answer for advice about how to prevent the same problem from reoccurring.
edited Apr 17 at 2:11
answered Mar 23 at 4:14
![](https://i.stack.imgur.com/zqElV.png?s=32&g=1)
![](https://i.stack.imgur.com/zqElV.png?s=32&g=1)
karel
49.5k11105126
49.5k11105126
I think it goes deeper than the desktop. If grub is reporting kali, I think his core system has been updated to kali.
â ravery
Mar 23 at 4:20
2
@ravery katoolin frequently causes this error in the GRUB menu. His core system has not been updated to Kali, only the entry in the GRUB menu has been superficially changed from Ubuntu to Kali as indicated in step 8 of this answer and also in this answer: askubuntu.com/questions/836270/â¦
â karel
Mar 23 at 4:24
ubuntu-desktop
is just a lowly meta-package soapt install --reinstall
won't do anything more than a plain install would. There's an another answer for reinstalling dependencies.
â Oliâ¦
Mar 23 at 10:11
How would I go about undoing all of the upgrades. I was thinking about using the purge command, which I found online, but then I would have to type all 900 packages out individually because I cant do anything but type. Is there a simple way to undo all of the things I did. All of it was just me upgrading using apt-get upgrade and me using autoremove. I am assuming all I need to do is undo the upgrading parts. I feel like there is a smarter way to do it. I can only get to the console (I think that is what its called, I got there using ctrl alt f1), no gui, so what can I do? Thanks for the ans.!
â Kaushik
Mar 24 at 0:40
katoolin also installs packages from GitHub. Removing multiple packages that were installed from GitHub will be a lot of hard work. Finding and removing orphaned packages (with deborphan) left over after removing packages that were quickly uninstalled with apt is even more hard work, and can also break your system if not done slowly and carefully. Fortunately it is not necessary to use deborphan.
â karel
Mar 24 at 1:19
add a comment |Â
I think it goes deeper than the desktop. If grub is reporting kali, I think his core system has been updated to kali.
â ravery
Mar 23 at 4:20
2
@ravery katoolin frequently causes this error in the GRUB menu. His core system has not been updated to Kali, only the entry in the GRUB menu has been superficially changed from Ubuntu to Kali as indicated in step 8 of this answer and also in this answer: askubuntu.com/questions/836270/â¦
â karel
Mar 23 at 4:24
ubuntu-desktop
is just a lowly meta-package soapt install --reinstall
won't do anything more than a plain install would. There's an another answer for reinstalling dependencies.
â Oliâ¦
Mar 23 at 10:11
How would I go about undoing all of the upgrades. I was thinking about using the purge command, which I found online, but then I would have to type all 900 packages out individually because I cant do anything but type. Is there a simple way to undo all of the things I did. All of it was just me upgrading using apt-get upgrade and me using autoremove. I am assuming all I need to do is undo the upgrading parts. I feel like there is a smarter way to do it. I can only get to the console (I think that is what its called, I got there using ctrl alt f1), no gui, so what can I do? Thanks for the ans.!
â Kaushik
Mar 24 at 0:40
katoolin also installs packages from GitHub. Removing multiple packages that were installed from GitHub will be a lot of hard work. Finding and removing orphaned packages (with deborphan) left over after removing packages that were quickly uninstalled with apt is even more hard work, and can also break your system if not done slowly and carefully. Fortunately it is not necessary to use deborphan.
â karel
Mar 24 at 1:19
I think it goes deeper than the desktop. If grub is reporting kali, I think his core system has been updated to kali.
â ravery
Mar 23 at 4:20
I think it goes deeper than the desktop. If grub is reporting kali, I think his core system has been updated to kali.
â ravery
Mar 23 at 4:20
2
2
@ravery katoolin frequently causes this error in the GRUB menu. His core system has not been updated to Kali, only the entry in the GRUB menu has been superficially changed from Ubuntu to Kali as indicated in step 8 of this answer and also in this answer: askubuntu.com/questions/836270/â¦
â karel
Mar 23 at 4:24
@ravery katoolin frequently causes this error in the GRUB menu. His core system has not been updated to Kali, only the entry in the GRUB menu has been superficially changed from Ubuntu to Kali as indicated in step 8 of this answer and also in this answer: askubuntu.com/questions/836270/â¦
â karel
Mar 23 at 4:24
ubuntu-desktop
is just a lowly meta-package so apt install --reinstall
won't do anything more than a plain install would. There's an another answer for reinstalling dependencies.â Oliâ¦
Mar 23 at 10:11
ubuntu-desktop
is just a lowly meta-package so apt install --reinstall
won't do anything more than a plain install would. There's an another answer for reinstalling dependencies.â Oliâ¦
Mar 23 at 10:11
How would I go about undoing all of the upgrades. I was thinking about using the purge command, which I found online, but then I would have to type all 900 packages out individually because I cant do anything but type. Is there a simple way to undo all of the things I did. All of it was just me upgrading using apt-get upgrade and me using autoremove. I am assuming all I need to do is undo the upgrading parts. I feel like there is a smarter way to do it. I can only get to the console (I think that is what its called, I got there using ctrl alt f1), no gui, so what can I do? Thanks for the ans.!
â Kaushik
Mar 24 at 0:40
How would I go about undoing all of the upgrades. I was thinking about using the purge command, which I found online, but then I would have to type all 900 packages out individually because I cant do anything but type. Is there a simple way to undo all of the things I did. All of it was just me upgrading using apt-get upgrade and me using autoremove. I am assuming all I need to do is undo the upgrading parts. I feel like there is a smarter way to do it. I can only get to the console (I think that is what its called, I got there using ctrl alt f1), no gui, so what can I do? Thanks for the ans.!
â Kaushik
Mar 24 at 0:40
katoolin also installs packages from GitHub. Removing multiple packages that were installed from GitHub will be a lot of hard work. Finding and removing orphaned packages (with deborphan) left over after removing packages that were quickly uninstalled with apt is even more hard work, and can also break your system if not done slowly and carefully. Fortunately it is not necessary to use deborphan.
â karel
Mar 24 at 1:19
katoolin also installs packages from GitHub. Removing multiple packages that were installed from GitHub will be a lot of hard work. Finding and removing orphaned packages (with deborphan) left over after removing packages that were quickly uninstalled with apt is even more hard work, and can also break your system if not done slowly and carefully. Fortunately it is not necessary to use deborphan.
â karel
Mar 24 at 1:19
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%2f1018441%2fhow-do-i-restore-my-system-os-back-to-its-original-condition-after-attempting-to%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