How to install Nitrux OS using znx?
I want to check out Nitrux which you can deploy using znx (how to here).
znx does not seem to open correctly in Fedora, which is why I would like to deploy it using the terminal. The how-to says that I should install it on a partition that has at least 4 GB.
I have one big free partition on my computer which has about 200 GB. Do you know if the entire partition will be "blocked" by Nitrux, if I will deploy it on that partition? Or will znx assign it 4 GB of that partition and let me use the rest?
Thanks!
fedora partition deployment
add a comment |
I want to check out Nitrux which you can deploy using znx (how to here).
znx does not seem to open correctly in Fedora, which is why I would like to deploy it using the terminal. The how-to says that I should install it on a partition that has at least 4 GB.
I have one big free partition on my computer which has about 200 GB. Do you know if the entire partition will be "blocked" by Nitrux, if I will deploy it on that partition? Or will znx assign it 4 GB of that partition and let me use the rest?
Thanks!
fedora partition deployment
If you give a -1, please also give an answer
– User12547645
Dec 9 at 22:46
add a comment |
I want to check out Nitrux which you can deploy using znx (how to here).
znx does not seem to open correctly in Fedora, which is why I would like to deploy it using the terminal. The how-to says that I should install it on a partition that has at least 4 GB.
I have one big free partition on my computer which has about 200 GB. Do you know if the entire partition will be "blocked" by Nitrux, if I will deploy it on that partition? Or will znx assign it 4 GB of that partition and let me use the rest?
Thanks!
fedora partition deployment
I want to check out Nitrux which you can deploy using znx (how to here).
znx does not seem to open correctly in Fedora, which is why I would like to deploy it using the terminal. The how-to says that I should install it on a partition that has at least 4 GB.
I have one big free partition on my computer which has about 200 GB. Do you know if the entire partition will be "blocked" by Nitrux, if I will deploy it on that partition? Or will znx assign it 4 GB of that partition and let me use the rest?
Thanks!
fedora partition deployment
fedora partition deployment
edited Dec 10 at 22:14
Uri Herrera
1205
1205
asked Dec 9 at 22:12
User12547645
81
81
If you give a -1, please also give an answer
– User12547645
Dec 9 at 22:46
add a comment |
If you give a -1, please also give an answer
– User12547645
Dec 9 at 22:46
If you give a -1, please also give an answer
– User12547645
Dec 9 at 22:46
If you give a -1, please also give an answer
– User12547645
Dec 9 at 22:46
add a comment |
2 Answers
2
active
oldest
votes
znx does not seem to open correctly in Fedora, which is why I would like to deploy it using the terminal. The how-to says that I should install it on a partition that has at least 4 GB.
It looks like you're confusing znx with znx-gui.
znx is a command-line AppImage program. znx-gui is a temporary and straightforward user interface that we made using KDialog for znx for users that don't want to touch the Terminal.
The commands in the Compendium are examples to guide users on how to use znx to deploy Nitrux, and just like the example shows, you are meant to deploy the ISO file to a target device, i.e. /dev/sdX and not to a partition i.e. /dev/sdXn where X is the device and n is the partition.
The 4GB that you mention is an example of the output of the command sudo fdisk -l it's not a recommendation, that's why it's in a different color too.
I have one big free partition on my computer which has about 200 GB. Do you know if the entire partition will be "blocked" by Nitrux, if I will deploy it on that partition? Or will znx assign it 4 GB of that partition and let me use the rest?
One of the features of znx is that you can deploy multiple operating systems at once without the need to create multiple partitions. With znx, you only need two partitions, one for the ESP and one for your data where it will keep it when you update the system and znx will create both of them automatically.
After znx creates its two partitions, the data partition will be of the size of the free space in the device that you initialized minus the ESP, for example, if it's a 10GB storage device znx will create a 131MB ESP and a 9.9GB data partition. Inside the data partition, you will find the home folders and the ISO files of the operating systems that you have deployed.
Back to your question, being an AppImage all that you need to do is download the file there's no installation involved, there's also no installation involved with Nitrux either.
If you downloaded znx first you have to make it executable, then you can execute the AppImage from the Terminal using sudo ./znx [command]

- If you download the AppImage and this message pops up, it's because it's not executable.

- Once it's made executable, you can use
sudo ./znx --helpto display the help.
Now you need to type the commands for znx in the correct order like the help shows and like the Compendium shows.
I want to check out Nitrux which you can deploy using znx (how to here).
So, let's assume that you have two storage devices one would be /dev/sda, and the other would be /dev/sdb, and you want to deploy Nitrux to /dev/sdb.
First, you initialize the device. This will wipe the device.
sudo ./znx init /dev/sdb
Second, to deploy Nitrux, you need the ISO image, so we download it and proceed accordingly, let's assume that the file is in your Home folder.
- Download ISO from openDesktop, Sourceforge, OSDN, Torrent.
sudo ./znx deploy /dev/sdb nitrux/v1-1-1 nitrux_release_stable-v1-1-1.iso- Wait for the write cache buffers to empty, use
syncfor this, note that this will depend on the speed of the target storage device.
And that's it. Reboot and select the second drive to boot into Nitrux.
We have explained what znx is and what it does in several articles at our Blog, the wiki and we recently added an FAQ (which summarizes the topics from the blog).
If you or anyone else wants to know how znx works or how Nitrux makes use of znx, I suggest creating more questions.
add a comment |
No, the entire partition will not be used by Nitrux:
The first thing you have to do in order to use znx is to initialize
the device. znx will wipe the device and create a new GPT
partition table on it, with two partitions. One of those partitions
stores the bootloader data, while the other stores user data
(including the images). Those partitions are then formatted with the
FAT32 and the BTRFS filesystems respectively. After that, znx creates
some directories on both partitions, as well as copying some files to
the boot partition. Once those things are done, the device is
considered initialized.
Furthermore...
Images are stored on the /boot_images directory of the data partition.
Inside that directory, a hierarchy of subdirectories that match the
name of the image are created. So, when you, for example, deploy
your_distro/rolling, a directory /boot_images/your_distro/rolling is
created in the data partition. Then, the image is stored in that
directory.
The 4G recommendation by Nitrux is not for the partition but for the entire device; This is very important. znx essentially takes over an entire disk, as described in the first quotation above. Maybe you can get it to work with with your 200GB partition, but that's not how the znx documentation describes it.
You can read the nitty-gritty in the znx Wiki.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "106"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f487004%2fhow-to-install-nitrux-os-using-znx%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
znx does not seem to open correctly in Fedora, which is why I would like to deploy it using the terminal. The how-to says that I should install it on a partition that has at least 4 GB.
It looks like you're confusing znx with znx-gui.
znx is a command-line AppImage program. znx-gui is a temporary and straightforward user interface that we made using KDialog for znx for users that don't want to touch the Terminal.
The commands in the Compendium are examples to guide users on how to use znx to deploy Nitrux, and just like the example shows, you are meant to deploy the ISO file to a target device, i.e. /dev/sdX and not to a partition i.e. /dev/sdXn where X is the device and n is the partition.
The 4GB that you mention is an example of the output of the command sudo fdisk -l it's not a recommendation, that's why it's in a different color too.
I have one big free partition on my computer which has about 200 GB. Do you know if the entire partition will be "blocked" by Nitrux, if I will deploy it on that partition? Or will znx assign it 4 GB of that partition and let me use the rest?
One of the features of znx is that you can deploy multiple operating systems at once without the need to create multiple partitions. With znx, you only need two partitions, one for the ESP and one for your data where it will keep it when you update the system and znx will create both of them automatically.
After znx creates its two partitions, the data partition will be of the size of the free space in the device that you initialized minus the ESP, for example, if it's a 10GB storage device znx will create a 131MB ESP and a 9.9GB data partition. Inside the data partition, you will find the home folders and the ISO files of the operating systems that you have deployed.
Back to your question, being an AppImage all that you need to do is download the file there's no installation involved, there's also no installation involved with Nitrux either.
If you downloaded znx first you have to make it executable, then you can execute the AppImage from the Terminal using sudo ./znx [command]

- If you download the AppImage and this message pops up, it's because it's not executable.

- Once it's made executable, you can use
sudo ./znx --helpto display the help.
Now you need to type the commands for znx in the correct order like the help shows and like the Compendium shows.
I want to check out Nitrux which you can deploy using znx (how to here).
So, let's assume that you have two storage devices one would be /dev/sda, and the other would be /dev/sdb, and you want to deploy Nitrux to /dev/sdb.
First, you initialize the device. This will wipe the device.
sudo ./znx init /dev/sdb
Second, to deploy Nitrux, you need the ISO image, so we download it and proceed accordingly, let's assume that the file is in your Home folder.
- Download ISO from openDesktop, Sourceforge, OSDN, Torrent.
sudo ./znx deploy /dev/sdb nitrux/v1-1-1 nitrux_release_stable-v1-1-1.iso- Wait for the write cache buffers to empty, use
syncfor this, note that this will depend on the speed of the target storage device.
And that's it. Reboot and select the second drive to boot into Nitrux.
We have explained what znx is and what it does in several articles at our Blog, the wiki and we recently added an FAQ (which summarizes the topics from the blog).
If you or anyone else wants to know how znx works or how Nitrux makes use of znx, I suggest creating more questions.
add a comment |
znx does not seem to open correctly in Fedora, which is why I would like to deploy it using the terminal. The how-to says that I should install it on a partition that has at least 4 GB.
It looks like you're confusing znx with znx-gui.
znx is a command-line AppImage program. znx-gui is a temporary and straightforward user interface that we made using KDialog for znx for users that don't want to touch the Terminal.
The commands in the Compendium are examples to guide users on how to use znx to deploy Nitrux, and just like the example shows, you are meant to deploy the ISO file to a target device, i.e. /dev/sdX and not to a partition i.e. /dev/sdXn where X is the device and n is the partition.
The 4GB that you mention is an example of the output of the command sudo fdisk -l it's not a recommendation, that's why it's in a different color too.
I have one big free partition on my computer which has about 200 GB. Do you know if the entire partition will be "blocked" by Nitrux, if I will deploy it on that partition? Or will znx assign it 4 GB of that partition and let me use the rest?
One of the features of znx is that you can deploy multiple operating systems at once without the need to create multiple partitions. With znx, you only need two partitions, one for the ESP and one for your data where it will keep it when you update the system and znx will create both of them automatically.
After znx creates its two partitions, the data partition will be of the size of the free space in the device that you initialized minus the ESP, for example, if it's a 10GB storage device znx will create a 131MB ESP and a 9.9GB data partition. Inside the data partition, you will find the home folders and the ISO files of the operating systems that you have deployed.
Back to your question, being an AppImage all that you need to do is download the file there's no installation involved, there's also no installation involved with Nitrux either.
If you downloaded znx first you have to make it executable, then you can execute the AppImage from the Terminal using sudo ./znx [command]

- If you download the AppImage and this message pops up, it's because it's not executable.

- Once it's made executable, you can use
sudo ./znx --helpto display the help.
Now you need to type the commands for znx in the correct order like the help shows and like the Compendium shows.
I want to check out Nitrux which you can deploy using znx (how to here).
So, let's assume that you have two storage devices one would be /dev/sda, and the other would be /dev/sdb, and you want to deploy Nitrux to /dev/sdb.
First, you initialize the device. This will wipe the device.
sudo ./znx init /dev/sdb
Second, to deploy Nitrux, you need the ISO image, so we download it and proceed accordingly, let's assume that the file is in your Home folder.
- Download ISO from openDesktop, Sourceforge, OSDN, Torrent.
sudo ./znx deploy /dev/sdb nitrux/v1-1-1 nitrux_release_stable-v1-1-1.iso- Wait for the write cache buffers to empty, use
syncfor this, note that this will depend on the speed of the target storage device.
And that's it. Reboot and select the second drive to boot into Nitrux.
We have explained what znx is and what it does in several articles at our Blog, the wiki and we recently added an FAQ (which summarizes the topics from the blog).
If you or anyone else wants to know how znx works or how Nitrux makes use of znx, I suggest creating more questions.
add a comment |
znx does not seem to open correctly in Fedora, which is why I would like to deploy it using the terminal. The how-to says that I should install it on a partition that has at least 4 GB.
It looks like you're confusing znx with znx-gui.
znx is a command-line AppImage program. znx-gui is a temporary and straightforward user interface that we made using KDialog for znx for users that don't want to touch the Terminal.
The commands in the Compendium are examples to guide users on how to use znx to deploy Nitrux, and just like the example shows, you are meant to deploy the ISO file to a target device, i.e. /dev/sdX and not to a partition i.e. /dev/sdXn where X is the device and n is the partition.
The 4GB that you mention is an example of the output of the command sudo fdisk -l it's not a recommendation, that's why it's in a different color too.
I have one big free partition on my computer which has about 200 GB. Do you know if the entire partition will be "blocked" by Nitrux, if I will deploy it on that partition? Or will znx assign it 4 GB of that partition and let me use the rest?
One of the features of znx is that you can deploy multiple operating systems at once without the need to create multiple partitions. With znx, you only need two partitions, one for the ESP and one for your data where it will keep it when you update the system and znx will create both of them automatically.
After znx creates its two partitions, the data partition will be of the size of the free space in the device that you initialized minus the ESP, for example, if it's a 10GB storage device znx will create a 131MB ESP and a 9.9GB data partition. Inside the data partition, you will find the home folders and the ISO files of the operating systems that you have deployed.
Back to your question, being an AppImage all that you need to do is download the file there's no installation involved, there's also no installation involved with Nitrux either.
If you downloaded znx first you have to make it executable, then you can execute the AppImage from the Terminal using sudo ./znx [command]

- If you download the AppImage and this message pops up, it's because it's not executable.

- Once it's made executable, you can use
sudo ./znx --helpto display the help.
Now you need to type the commands for znx in the correct order like the help shows and like the Compendium shows.
I want to check out Nitrux which you can deploy using znx (how to here).
So, let's assume that you have two storage devices one would be /dev/sda, and the other would be /dev/sdb, and you want to deploy Nitrux to /dev/sdb.
First, you initialize the device. This will wipe the device.
sudo ./znx init /dev/sdb
Second, to deploy Nitrux, you need the ISO image, so we download it and proceed accordingly, let's assume that the file is in your Home folder.
- Download ISO from openDesktop, Sourceforge, OSDN, Torrent.
sudo ./znx deploy /dev/sdb nitrux/v1-1-1 nitrux_release_stable-v1-1-1.iso- Wait for the write cache buffers to empty, use
syncfor this, note that this will depend on the speed of the target storage device.
And that's it. Reboot and select the second drive to boot into Nitrux.
We have explained what znx is and what it does in several articles at our Blog, the wiki and we recently added an FAQ (which summarizes the topics from the blog).
If you or anyone else wants to know how znx works or how Nitrux makes use of znx, I suggest creating more questions.
znx does not seem to open correctly in Fedora, which is why I would like to deploy it using the terminal. The how-to says that I should install it on a partition that has at least 4 GB.
It looks like you're confusing znx with znx-gui.
znx is a command-line AppImage program. znx-gui is a temporary and straightforward user interface that we made using KDialog for znx for users that don't want to touch the Terminal.
The commands in the Compendium are examples to guide users on how to use znx to deploy Nitrux, and just like the example shows, you are meant to deploy the ISO file to a target device, i.e. /dev/sdX and not to a partition i.e. /dev/sdXn where X is the device and n is the partition.
The 4GB that you mention is an example of the output of the command sudo fdisk -l it's not a recommendation, that's why it's in a different color too.
I have one big free partition on my computer which has about 200 GB. Do you know if the entire partition will be "blocked" by Nitrux, if I will deploy it on that partition? Or will znx assign it 4 GB of that partition and let me use the rest?
One of the features of znx is that you can deploy multiple operating systems at once without the need to create multiple partitions. With znx, you only need two partitions, one for the ESP and one for your data where it will keep it when you update the system and znx will create both of them automatically.
After znx creates its two partitions, the data partition will be of the size of the free space in the device that you initialized minus the ESP, for example, if it's a 10GB storage device znx will create a 131MB ESP and a 9.9GB data partition. Inside the data partition, you will find the home folders and the ISO files of the operating systems that you have deployed.
Back to your question, being an AppImage all that you need to do is download the file there's no installation involved, there's also no installation involved with Nitrux either.
If you downloaded znx first you have to make it executable, then you can execute the AppImage from the Terminal using sudo ./znx [command]

- If you download the AppImage and this message pops up, it's because it's not executable.

- Once it's made executable, you can use
sudo ./znx --helpto display the help.
Now you need to type the commands for znx in the correct order like the help shows and like the Compendium shows.
I want to check out Nitrux which you can deploy using znx (how to here).
So, let's assume that you have two storage devices one would be /dev/sda, and the other would be /dev/sdb, and you want to deploy Nitrux to /dev/sdb.
First, you initialize the device. This will wipe the device.
sudo ./znx init /dev/sdb
Second, to deploy Nitrux, you need the ISO image, so we download it and proceed accordingly, let's assume that the file is in your Home folder.
- Download ISO from openDesktop, Sourceforge, OSDN, Torrent.
sudo ./znx deploy /dev/sdb nitrux/v1-1-1 nitrux_release_stable-v1-1-1.iso- Wait for the write cache buffers to empty, use
syncfor this, note that this will depend on the speed of the target storage device.
And that's it. Reboot and select the second drive to boot into Nitrux.
We have explained what znx is and what it does in several articles at our Blog, the wiki and we recently added an FAQ (which summarizes the topics from the blog).
If you or anyone else wants to know how znx works or how Nitrux makes use of znx, I suggest creating more questions.
edited Dec 11 at 7:58
answered Dec 10 at 21:03
Uri Herrera
1205
1205
add a comment |
add a comment |
No, the entire partition will not be used by Nitrux:
The first thing you have to do in order to use znx is to initialize
the device. znx will wipe the device and create a new GPT
partition table on it, with two partitions. One of those partitions
stores the bootloader data, while the other stores user data
(including the images). Those partitions are then formatted with the
FAT32 and the BTRFS filesystems respectively. After that, znx creates
some directories on both partitions, as well as copying some files to
the boot partition. Once those things are done, the device is
considered initialized.
Furthermore...
Images are stored on the /boot_images directory of the data partition.
Inside that directory, a hierarchy of subdirectories that match the
name of the image are created. So, when you, for example, deploy
your_distro/rolling, a directory /boot_images/your_distro/rolling is
created in the data partition. Then, the image is stored in that
directory.
The 4G recommendation by Nitrux is not for the partition but for the entire device; This is very important. znx essentially takes over an entire disk, as described in the first quotation above. Maybe you can get it to work with with your 200GB partition, but that's not how the znx documentation describes it.
You can read the nitty-gritty in the znx Wiki.
add a comment |
No, the entire partition will not be used by Nitrux:
The first thing you have to do in order to use znx is to initialize
the device. znx will wipe the device and create a new GPT
partition table on it, with two partitions. One of those partitions
stores the bootloader data, while the other stores user data
(including the images). Those partitions are then formatted with the
FAT32 and the BTRFS filesystems respectively. After that, znx creates
some directories on both partitions, as well as copying some files to
the boot partition. Once those things are done, the device is
considered initialized.
Furthermore...
Images are stored on the /boot_images directory of the data partition.
Inside that directory, a hierarchy of subdirectories that match the
name of the image are created. So, when you, for example, deploy
your_distro/rolling, a directory /boot_images/your_distro/rolling is
created in the data partition. Then, the image is stored in that
directory.
The 4G recommendation by Nitrux is not for the partition but for the entire device; This is very important. znx essentially takes over an entire disk, as described in the first quotation above. Maybe you can get it to work with with your 200GB partition, but that's not how the znx documentation describes it.
You can read the nitty-gritty in the znx Wiki.
add a comment |
No, the entire partition will not be used by Nitrux:
The first thing you have to do in order to use znx is to initialize
the device. znx will wipe the device and create a new GPT
partition table on it, with two partitions. One of those partitions
stores the bootloader data, while the other stores user data
(including the images). Those partitions are then formatted with the
FAT32 and the BTRFS filesystems respectively. After that, znx creates
some directories on both partitions, as well as copying some files to
the boot partition. Once those things are done, the device is
considered initialized.
Furthermore...
Images are stored on the /boot_images directory of the data partition.
Inside that directory, a hierarchy of subdirectories that match the
name of the image are created. So, when you, for example, deploy
your_distro/rolling, a directory /boot_images/your_distro/rolling is
created in the data partition. Then, the image is stored in that
directory.
The 4G recommendation by Nitrux is not for the partition but for the entire device; This is very important. znx essentially takes over an entire disk, as described in the first quotation above. Maybe you can get it to work with with your 200GB partition, but that's not how the znx documentation describes it.
You can read the nitty-gritty in the znx Wiki.
No, the entire partition will not be used by Nitrux:
The first thing you have to do in order to use znx is to initialize
the device. znx will wipe the device and create a new GPT
partition table on it, with two partitions. One of those partitions
stores the bootloader data, while the other stores user data
(including the images). Those partitions are then formatted with the
FAT32 and the BTRFS filesystems respectively. After that, znx creates
some directories on both partitions, as well as copying some files to
the boot partition. Once those things are done, the device is
considered initialized.
Furthermore...
Images are stored on the /boot_images directory of the data partition.
Inside that directory, a hierarchy of subdirectories that match the
name of the image are created. So, when you, for example, deploy
your_distro/rolling, a directory /boot_images/your_distro/rolling is
created in the data partition. Then, the image is stored in that
directory.
The 4G recommendation by Nitrux is not for the partition but for the entire device; This is very important. znx essentially takes over an entire disk, as described in the first quotation above. Maybe you can get it to work with with your 200GB partition, but that's not how the znx documentation describes it.
You can read the nitty-gritty in the znx Wiki.
answered Dec 10 at 3:24
Emmanuel Rosa
2,9301612
2,9301612
add a comment |
add a comment |
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f487004%2fhow-to-install-nitrux-os-using-znx%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
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
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
If you give a -1, please also give an answer
– User12547645
Dec 9 at 22:46