Warning: preg_match(): Unknown modifier '-' in /home/akl1986/public_html/support/wp-content/plugins/redux-framework/redux-core/inc/extensions/metaboxes/class-redux-extension-metaboxes.php on line 783

Warning: preg_match(): Unknown modifier '-' in /home/akl1986/public_html/support/wp-content/plugins/redux-framework/redux-core/inc/extensions/metaboxes/class-redux-extension-metaboxes.php on line 783

Warning: preg_match(): Unknown modifier '-' in /home/akl1986/public_html/support/wp-content/plugins/redux-framework/redux-core/inc/extensions/metaboxes/class-redux-extension-metaboxes.php on line 783

Warning: preg_match(): Unknown modifier '-' in /home/akl1986/public_html/support/wp-content/plugins/redux-framework/redux-core/inc/extensions/metaboxes/class-redux-extension-metaboxes.php on line 783

Warning: preg_match(): Unknown modifier '-' in /home/akl1986/public_html/support/wp-content/plugins/redux-framework/redux-core/inc/extensions/metaboxes/class-redux-extension-metaboxes.php on line 783

Warning: preg_match(): Unknown modifier '-' in /home/akl1986/public_html/support/wp-content/plugins/redux-framework/redux-core/inc/extensions/metaboxes/class-redux-extension-metaboxes.php on line 783

Warning: preg_match(): Unknown modifier '-' in /home/akl1986/public_html/support/wp-content/plugins/redux-framework/redux-core/inc/extensions/metaboxes/class-redux-extension-metaboxes.php on line 783

Warning: preg_match(): Unknown modifier '-' in /home/akl1986/public_html/support/wp-content/plugins/redux-framework/redux-core/inc/extensions/metaboxes/class-redux-extension-metaboxes.php on line 783

Warning: Cannot modify header information - headers already sent by (output started at /home/akl1986/public_html/support/wp-content/plugins/redux-framework/redux-core/inc/extensions/metaboxes/class-redux-extension-metaboxes.php:783) in /home/akl1986/public_html/support/wp-includes/feed-rss2.php on line 8
Installing Node.js From Source on Ubuntu 14.04 – AKLWEB HOST LLC Support Center https://support.aklwebhost.com Fri, 06 Dec 2019 23:59:13 +0000 en-US hourly 1 https://wordpress.org/?v=6.4.4 Installing Node.js From Source on Ubuntu 14.04 https://support.aklwebhost.com/knowledgebase/installing-node-js-from-source-on-ubuntu-14-04/ https://support.aklwebhost.com/knowledgebase/installing-node-js-from-source-on-ubuntu-14-04/#respond Fri, 06 Dec 2019 23:59:13 +0000 https://support.aklwebhost.com/?post_type=manual_kb&p=2673 Install build tools

Several tools will be needed. Run the following command:

apt-get install make g++ libssl-dev git

Download Node.js source

It is recommended to download the source from the node.js website. The git repository source may not be stable, considering it receives changes after the latest mainstream version. To download from the website, run these commands:

cd /tmp
wget http://nodejs.org/dist/v0.10.32/node-v0.10.32.tar.gz
tar -xvf node-v0.10.32.tar.gz
cd node-v0.10.32

If you really must use the unstable mainstream version, run the following command:

git clone https://github.com/joyent/node
cd node

Upon success, you can proceed to the next step.

Configure and Build

Depending on your server, you may want to replace X with the number of CPUs of your server. If your VPS has 2 virtual CPUs, you would replace X with 2. This will help speed up the building process.

./configure
make -jX

If everything was successful, you can now run the following command to install node js onto your system:

make install

Once it is installed, run node -v and check the version output. If a version is displayed similar to v0.10.32 (version will vary), then you then have successfully installed node.js. Congratulations.

]]>
https://support.aklwebhost.com/knowledgebase/installing-node-js-from-source-on-ubuntu-14-04/feed/ 0