{"id":475,"date":"2023-12-03T16:18:15","date_gmt":"2023-12-03T16:18:15","guid":{"rendered":"http:\/\/yatri0112"},"modified":"2024-02-05T20:52:20","modified_gmt":"2024-02-05T20:52:20","slug":"fuertecoin-smartnode","status":"publish","type":"post","link":"https:\/\/fuertecoin.network\/site\/fuertecoin-smartnode\/","title":{"rendered":"Guide to Setting Up a FuerteCoin Smart Node on Linux Ubuntu 20"},"content":{"rendered":"\n<p>This guide will walk you through the necessary steps to set up a FuerteCoin smart node on a server with Linux Ubuntu 20. Please follow these steps carefully.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 1: Update the Server<\/h2>\n\n\n\n<pre class=\"wp-block-code has-vivid-green-cyan-color has-black-background-color has-text-color has-background has-link-color wp-elements-c3491005fed170ee13774ff16809b9c7\"><code>sudo apt update &amp;&amp; sudo apt upgrade -y<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 2: Add 2GB of SWAP (if necessary)<\/h2>\n\n\n\n<p>First, check if you already have active swap:<\/p>\n\n\n\n<pre class=\"wp-block-code has-vivid-green-cyan-color has-black-background-color has-text-color has-background has-link-color wp-elements-412e190928ddf2fb8b82406b177d416d\"><code>free -h<\/code><\/pre>\n\n\n\n<p>If the result shows &#8220;Swap: 0B 0B 0B,&#8221; then you need to create and activate SWAP:<\/p>\n\n\n\n<pre class=\"wp-block-code has-vivid-green-cyan-color has-black-background-color has-text-color has-background has-link-color wp-elements-9faa8fa17c10c0f12c7f5c29de146b5e\"><code>\nsudo dd if=\/dev\/zero of=\/swapfile bs=1k count=2048k\nsudo chmod 600 \/swapfile\nsudo mkswap \/swapfile\nsudo swapon \/swapfile\nsudo echo \"\/swapfile swap swap auto 0 0\" | tee -a \/etc\/fstab\nsudo sysctl -w vm.swappiness=10\nsudo echo vm.swappiness=10 | sudo tee -a \/etc\/sysctl.conf\n                <\/code><\/pre>\n\n\n\n<p>Make sure the last line shows &#8220;swappiness = 10.&#8221;<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 3: Enable the Firewall and Open Ports<\/h2>\n\n\n\n<pre class=\"wp-block-code has-vivid-green-cyan-color has-black-background-color has-text-color has-background has-link-color wp-elements-5be97809a6fbe056214a96eb36f3e23a\"><code>\nsudo apt install ufw -y\nufw default deny incoming\nufw default allow outgoing\nufw allow ssh\nufw allow 2023\/tcp\nufw enable\n                <\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 4: Install Fail2Ban<\/h2>\n\n\n\n<pre class=\"wp-block-code has-vivid-green-cyan-color has-black-background-color has-text-color has-background has-link-color wp-elements-fa1ca0f7d093093af28c2e4243eeba25\"><code>sudo apt install fail2ban -y<\/code><\/pre>\n\n\n\n<p>Create and edit the Fail2Ban configuration file:<\/p>\n\n\n\n<pre class=\"wp-block-code has-vivid-green-cyan-color has-black-background-color has-text-color has-background has-link-color wp-elements-c2f5d7e8f00e1478b7ad567012bd1d92\"><code>sudo nano \/etc\/fail2ban\/jail.local<\/code><\/pre>\n\n\n\n<p>Then, copy and paste the following configuration into the file:<\/p>\n\n\n\n<pre class=\"wp-block-code has-vivid-green-cyan-color has-black-background-color has-text-color has-background has-link-color wp-elements-86d8ab9998947c90fd0fa6697890a16a\"><code>&#91;sshd]\nenabled = true\nport = 22\nfilter = sshd\nlogpath = \/var\/log\/auth.log\nmaxretry = 3<\/code><\/pre>\n\n\n\n<p>Restart Fail2Ban:<\/p>\n\n\n\n<pre class=\"wp-block-code has-vivid-green-cyan-color has-black-background-color has-text-color has-background has-link-color wp-elements-779daa5011d8fe3c6f9932af63cfa082\"><code>sudo systemctl restart fail2ban<\/code><\/pre>\n\n\n\n<p>Restart the server:<\/p>\n\n\n\n<pre class=\"wp-block-code has-vivid-green-cyan-color has-black-background-color has-text-color has-background has-link-color wp-elements-ab04833dd086a9af34f234f7e8255411\"><code>sudo reboot<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 5: Install the FuerteCoin Daemon<\/h2>\n\n\n\n<p>Download the latest precompiled files:<\/p>\n\n\n\n<pre class=\"wp-block-code has-vivid-green-cyan-color has-black-background-color has-text-color has-background has-link-color wp-elements-c4f2cd8d9829b57e57211fc24b2da89b\"><code>wget https:\/\/github.com\/GitFuec\/fuertecoin\/releases\/download\/v1.1.2.0\/fuertecoin_PRE_1.1.2.0_ubuntu-20.tar.gz<\/code><\/pre>\n\n\n\n<p>Unpack the package:<\/p>\n\n\n\n<pre class=\"wp-block-code has-vivid-green-cyan-color has-black-background-color has-text-color has-background has-link-color wp-elements-3f3681a611b4f533ba4a37253905c0cb\"><code>\ntar -xvf fuertecoin_PRE_1.1.2.0_ubuntu-20.tar.gz\ncd fuertecoin_PRE_1.1.2.0_ubuntu-20\n                <\/code><\/pre>\n\n\n\n<p>Move the files:<\/p>\n\n\n\n<pre class=\"wp-block-code has-vivid-green-cyan-color has-black-background-color has-text-color has-background has-link-color wp-elements-db4ed2de7bf0b40443a77f386358f51a\"><code>\nsudo strip fuertecoind fuertecoin-cli fuertecoin-tx\nsudo cp -r fuertecoind fuertecoin-cli fuertecoin-tx \/usr\/bin\/\nchmod +x \/usr\/bin\/fuertecoind\nchmod +x \/usr\/bin\/fuertecoin-cli\nchmod +x \/usr\/bin\/fuertecoin-tx\n                <\/code><\/pre>\n\n\n\n<p>Create a directory and the initial configuration file for FuerteCoin:<\/p>\n\n\n\n<pre class=\"wp-block-code has-vivid-green-cyan-color has-black-background-color has-text-color has-background has-link-color wp-elements-6588c0c895dd4eaae3b8a22cc2eb52cc\"><code><code>mkdir -p \/home\/.FuerteCoinSmartnode echo ' daemon=1 server=1 listen=1 txindex=1 maxconnections=24 rpcthreads=64 rpcuser=fuertecoin rpcpassword=4972mNqe7lxk12 rpcallowip=127.0.0.1 rpcport=13077 addnode=144.91.107.170 ' | sudo -E tee \/home\/.<span style=\"background-color: initial; font-family: inherit; font-size: inherit;\">FuerteCoinSmartnode\/fuertecoin.conf >\/dev\/null 2>&amp;1<\/span><\/code><\/code><\/pre>\n\n\n\n<p>Start FuerteCoin:<\/p>\n\n\n\n<pre class=\"wp-block-code has-vivid-green-cyan-color has-black-background-color has-text-color has-background has-link-color wp-elements-bc3839765f861d0abd3839e09b94a980\"><code>fuertecoind -datadir=\/home\/.<span style=\"background-color: initial; font-family: inherit; font-size: inherit;\">FuerteCoinSmartnode -daemon<\/span><\/code><\/pre>\n\n\n\n<p>Encrypt the wallet:<\/p>\n\n\n\n<pre class=\"wp-block-code has-vivid-green-cyan-color has-black-background-color has-text-color has-background has-link-color wp-elements-98219cc0c229775dd8e96aff66b0badf\"><code>fuertecoin-cli -datadir=\/home\/.<span style=\"background-color: initial; font-family: inherit; font-size: inherit;\">FuerteCoinSmartnode encryptwallet YourSecurePassword<\/span><\/code><\/pre>\n\n\n\n<p>Generate two addresses, one for collateral and one for paying the fee:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># Generate collateral and fee addresses\nCollateral Address:\nfuertecoin-cli -datadir=\/home\/.<span style=\"background-color: initial; font-family: inherit; font-size: inherit; color: initial;\">FuerteCoinSmartnode getnewaddress<\/span># Example: FSdZr8gZv65WRGXVosy8k2Ke9n4oAziYGt\n\nFee Address:\nfuertecoin-cli -datadir=\/home\/.FuerteCoinSmartnode getnewaddress\n# Example: FQZ2n8MgXbqjvgbNjqn47jPe3hkS4v1URi\n                <\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 6: Collateral Address<\/h2>\n\n\n\n<p>Open your local wallet and create a new receiving address. Send 900,000 FUEC to the new receiving address and wait for the transaction to confirm. <\/p>\n\n\n\n<p>Send 2 FUEC to the fee address FQZ2n8MgXbqjvgbNjqn47jPe3hkS4v1URi<\/p>\n\n\n\n<p>You can use the `fuertecoin-cli -datadir=\/home\/.<code>FuerteCoinSmartnode<\/code> listaddressbalances` command to check the balances.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 7: Create the protx command for the control wallet<\/h2>\n\n\n\n<p>Enter the `protx` command in the debug console of your local wallet. This will create a .conf file for that node in the same directory where you run the wallet.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\nprotx quick_setup \"Transaction ID\" \"Collateral Index\" \"Smartnode Server IP:2023\" \"Fee Address\"\n                <\/code><\/pre>\n\n\n\n<p>Decrypt the wallet:<\/p>\n\n\n\n<pre class=\"wp-block-code has-vivid-green-cyan-color has-black-background-color has-text-color has-background has-link-color wp-elements-7e29e8ebd44cb88835da503f5fe66274\"><code>\nfuertecoin-cli -datadir=\/home\/.FuerteCoinSmartnode<span style=\"font-family: inherit; font-size: inherit; background-color: initial;\"> -fuertecoin.conf walletpassphrase YourSecurePassword 600<\/span>                <\/code><\/pre>\n\n\n\n<p>Replace the values with the corresponding data.<\/p>\n\n\n\n<p>Generate configuration:<\/p>\n\n\n\n<pre class=\"wp-block-code has-vivid-green-cyan-color has-black-background-color has-text-color has-background has-link-color wp-elements-456477626db466f2ac776a3c8bfd6833\"><code>\nfuertecoin-cli -datadir=\/home\/.FuerteCoinSmartnode protx quick_setup e327465113cbfff5ef693f61bba20ea6486b5f6da0133138c15acdbf6b86cdbd 1 136.190.123.91:2023 FQZ2n8MgXbqjvgbNjqn47jPe3hkS4v1URi\n                <\/code><\/pre>\n\n\n\n<p>Save the JSON file in a safe place.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 8: Configure the Smart Node<\/h2>\n\n\n\n<p>The configuration file is generated at:<\/p>\n\n\n\n<pre class=\"wp-block-code has-vivid-green-cyan-color has-black-background-color has-text-color has-background has-link-color wp-elements-52ae7d2ebb8570663f54eeb4a96e3d6c\"><code>\/home\/.FuerteCoinSmartnode\/FSdZr8gZv65WRGXVosy8k2Ke9n4oAziYGtn_fuertecoin.conf<\/code><\/pre>\n\n\n\n<p>Stop the daemon:<\/p>\n\n\n\n<pre class=\"wp-block-code has-vivid-green-cyan-color has-black-background-color has-text-color has-background has-link-color wp-elements-2ef1722b93895045e3b3855efde6e059\"><code>fuertecoin-cli -datadir=\/home\/.FuerteCoinSmartnode stop<\/code><\/pre>\n\n\n\n<p>Copy the configuration data:<\/p>\n\n\n\n<pre class=\"wp-block-code has-vivid-green-cyan-color has-black-background-color has-text-color has-background has-link-color wp-elements-fadbc0b257fdf814f17dc3c09c0b38d6\"><code>cp \/home\/.FuerteCoinSmartnode\/FSdZr8gZv65WRGXVosy8k2Ke9n4oAziYGt_fuertecoin.conf fuertecoin.conf<\/code><\/pre>\n\n\n\n<p>Start the daemon:<\/p>\n\n\n\n<pre class=\"wp-block-code has-vivid-green-cyan-color has-black-background-color has-text-color has-background has-link-color wp-elements-032a226859c11e567c32b2f33a13cbcd\"><code>fuertecoind -datadir=\/home\/.FuerteCoinSmartnode -daemon<\/code><\/pre>\n\n\n\n<p>Create a task:<\/p>\n\n\n\n<pre class=\"wp-block-code has-vivid-green-cyan-color has-black-background-color has-text-color has-background has-link-color wp-elements-aff673ee1a37e179b7aa03292befd5df\"><code>(crontab -l 2>\/dev\/null; echo \"@reboot sleep 60 &amp;&amp; fuertecoind -datadir=\/home\/.FuerteCoinSmartnode -fuertecoin.conf -daemon\") | crontab -<\/code><\/pre>\n\n\n\n<p>Wait a few minutes and check the status of the smart node:<\/p>\n\n\n\n<pre class=\"wp-block-code has-vivid-green-cyan-color has-black-background-color has-text-color has-background has-link-color wp-elements-cb3ea1d4def8f60a05e97cde42f8be46\"><code>fuertecoin-cli -datadir=\/home\/.FuerteCoinSmartnode smartnode status<\/code><\/pre>\n\n\n\n<p>Congratulations! You have successfully configured a FuerteCoin smart node on your Ubuntu 20 server. Be sure to save all configuration files and keys securely.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>This guide will walk you through the necessary steps to set up a FuerteCoin smart node on a server with Linux Ubuntu 20. Please follow these steps carefully. Step 1: Update the Server Step 2: Add 2GB of SWAP (if necessary) First, check if you already have active swap: If the result shows &#8220;Swap: 0B [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":1529,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-475","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-uncategorized"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v23.9 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Guide to Setting Up a FuerteCoin Smart Node on Linux Ubuntu 20 - FuerteCoin Network<\/title>\n<meta name=\"description\" content=\"This guide will walk you through the necessary steps to set up a FuerteCoin smart node on a server with Linux Ubuntu 20\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/fuertecoin.network\/site\/fuertecoin-smartnode\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Guide to Setting Up a FuerteCoin Smart Node on Linux Ubuntu 20 - FuerteCoin Network\" \/>\n<meta property=\"og:description\" content=\"This guide will walk you through the necessary steps to set up a FuerteCoin smart node on a server with Linux Ubuntu 20\" \/>\n<meta property=\"og:url\" content=\"https:\/\/fuertecoin.network\/site\/fuertecoin-smartnode\/\" \/>\n<meta property=\"og:site_name\" content=\"FuerteCoin Network\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/FuerteCoinNetwork\" \/>\n<meta property=\"article:published_time\" content=\"2023-12-03T16:18:15+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-02-05T20:52:20+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/fuertecoin.network\/site\/wp-content\/uploads\/2023\/12\/smartnode.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"1024\" \/>\n\t<meta property=\"og:image:height\" content=\"1024\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"author\" content=\"usuariofuertecoin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@fuertecoinFUEC\" \/>\n<meta name=\"twitter:site\" content=\"@fuertecoinFUEC\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"usuariofuertecoin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/fuertecoin.network\/site\/fuertecoin-smartnode\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/fuertecoin.network\/site\/fuertecoin-smartnode\/\"},\"author\":{\"name\":\"usuariofuertecoin\",\"@id\":\"https:\/\/fuertecoin.network\/site\/#\/schema\/person\/5eceee4710749dbc56588011e9141723\"},\"headline\":\"Guide to Setting Up a FuerteCoin Smart Node on Linux Ubuntu 20\",\"datePublished\":\"2023-12-03T16:18:15+00:00\",\"dateModified\":\"2024-02-05T20:52:20+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/fuertecoin.network\/site\/fuertecoin-smartnode\/\"},\"wordCount\":329,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/fuertecoin.network\/site\/#organization\"},\"image\":{\"@id\":\"https:\/\/fuertecoin.network\/site\/fuertecoin-smartnode\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/fuertecoin.network\/site\/wp-content\/uploads\/2023\/12\/smartnode.webp\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/fuertecoin.network\/site\/fuertecoin-smartnode\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/fuertecoin.network\/site\/fuertecoin-smartnode\/\",\"url\":\"https:\/\/fuertecoin.network\/site\/fuertecoin-smartnode\/\",\"name\":\"Guide to Setting Up a FuerteCoin Smart Node on Linux Ubuntu 20 - FuerteCoin Network\",\"isPartOf\":{\"@id\":\"https:\/\/fuertecoin.network\/site\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/fuertecoin.network\/site\/fuertecoin-smartnode\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/fuertecoin.network\/site\/fuertecoin-smartnode\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/fuertecoin.network\/site\/wp-content\/uploads\/2023\/12\/smartnode.webp\",\"datePublished\":\"2023-12-03T16:18:15+00:00\",\"dateModified\":\"2024-02-05T20:52:20+00:00\",\"description\":\"This guide will walk you through the necessary steps to set up a FuerteCoin smart node on a server with Linux Ubuntu 20\",\"breadcrumb\":{\"@id\":\"https:\/\/fuertecoin.network\/site\/fuertecoin-smartnode\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/fuertecoin.network\/site\/fuertecoin-smartnode\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/fuertecoin.network\/site\/fuertecoin-smartnode\/#primaryimage\",\"url\":\"https:\/\/fuertecoin.network\/site\/wp-content\/uploads\/2023\/12\/smartnode.webp\",\"contentUrl\":\"https:\/\/fuertecoin.network\/site\/wp-content\/uploads\/2023\/12\/smartnode.webp\",\"width\":1024,\"height\":1024},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/fuertecoin.network\/site\/fuertecoin-smartnode\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/fuertecoin.network\/site\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Guide to Setting Up a FuerteCoin Smart Node on Linux Ubuntu 20\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/fuertecoin.network\/site\/#website\",\"url\":\"https:\/\/fuertecoin.network\/site\/\",\"name\":\"FuerteCoin Network\",\"description\":\"We aim for players to enjoy a gaming experience without the need to spend real money\",\"publisher\":{\"@id\":\"https:\/\/fuertecoin.network\/site\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/fuertecoin.network\/site\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/fuertecoin.network\/site\/#organization\",\"name\":\"FuerteCoin Network\",\"url\":\"https:\/\/fuertecoin.network\/site\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/fuertecoin.network\/site\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/fuertecoin.network\/site\/wp-content\/uploads\/2023\/12\/FuerteCoin.png\",\"contentUrl\":\"https:\/\/fuertecoin.network\/site\/wp-content\/uploads\/2023\/12\/FuerteCoin.png\",\"width\":1080,\"height\":1080,\"caption\":\"FuerteCoin Network\"},\"image\":{\"@id\":\"https:\/\/fuertecoin.network\/site\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/FuerteCoinNetwork\",\"https:\/\/x.com\/fuertecoinFUEC\",\"https:\/\/github.com\/GitFuec\/fuertecoin\",\"https:\/\/discord.gg\/Q7K5JAPZEh\",\"https:\/\/coinmarketcap.com\/community\/es\/profile\/SabiasQueSpace\",\"https:\/\/bitcointalk.org\/index.php?topic=5481429\",\"https:\/\/coinpaprika.com\/coin\/fuec-fuertecoin\",\"https:\/\/www.livecoinwatch.com\/price\/Fuertecoin-FUEC\",\"https:\/\/www.monedas.com\/fuertecoin\",\"https:\/\/www.coinpare.io\/coin\/fuec-fuertecoin\",\"https:\/\/www.youtube.com\/channel\/UClZLhqAgco4kramXGsoF_Iw\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/fuertecoin.network\/site\/#\/schema\/person\/5eceee4710749dbc56588011e9141723\",\"name\":\"usuariofuertecoin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/fuertecoin.network\/site\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/89f4d522069b309c5ed392ecf0eb227bb0851efd1ae3e47826ddc442834322d8?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/89f4d522069b309c5ed392ecf0eb227bb0851efd1ae3e47826ddc442834322d8?s=96&d=mm&r=g\",\"caption\":\"usuariofuertecoin\"},\"sameAs\":[\"https:\/\/fuertecoin.network\/site\"],\"url\":\"https:\/\/fuertecoin.network\/site\/author\/usuariofuertecoin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Guide to Setting Up a FuerteCoin Smart Node on Linux Ubuntu 20 - FuerteCoin Network","description":"This guide will walk you through the necessary steps to set up a FuerteCoin smart node on a server with Linux Ubuntu 20","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/fuertecoin.network\/site\/fuertecoin-smartnode\/","og_locale":"en_US","og_type":"article","og_title":"Guide to Setting Up a FuerteCoin Smart Node on Linux Ubuntu 20 - FuerteCoin Network","og_description":"This guide will walk you through the necessary steps to set up a FuerteCoin smart node on a server with Linux Ubuntu 20","og_url":"https:\/\/fuertecoin.network\/site\/fuertecoin-smartnode\/","og_site_name":"FuerteCoin Network","article_publisher":"https:\/\/www.facebook.com\/FuerteCoinNetwork","article_published_time":"2023-12-03T16:18:15+00:00","article_modified_time":"2024-02-05T20:52:20+00:00","og_image":[{"width":1024,"height":1024,"url":"https:\/\/fuertecoin.network\/site\/wp-content\/uploads\/2023\/12\/smartnode.webp","type":"image\/webp"}],"author":"usuariofuertecoin","twitter_card":"summary_large_image","twitter_creator":"@fuertecoinFUEC","twitter_site":"@fuertecoinFUEC","twitter_misc":{"Written by":"usuariofuertecoin","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/fuertecoin.network\/site\/fuertecoin-smartnode\/#article","isPartOf":{"@id":"https:\/\/fuertecoin.network\/site\/fuertecoin-smartnode\/"},"author":{"name":"usuariofuertecoin","@id":"https:\/\/fuertecoin.network\/site\/#\/schema\/person\/5eceee4710749dbc56588011e9141723"},"headline":"Guide to Setting Up a FuerteCoin Smart Node on Linux Ubuntu 20","datePublished":"2023-12-03T16:18:15+00:00","dateModified":"2024-02-05T20:52:20+00:00","mainEntityOfPage":{"@id":"https:\/\/fuertecoin.network\/site\/fuertecoin-smartnode\/"},"wordCount":329,"commentCount":0,"publisher":{"@id":"https:\/\/fuertecoin.network\/site\/#organization"},"image":{"@id":"https:\/\/fuertecoin.network\/site\/fuertecoin-smartnode\/#primaryimage"},"thumbnailUrl":"https:\/\/fuertecoin.network\/site\/wp-content\/uploads\/2023\/12\/smartnode.webp","inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/fuertecoin.network\/site\/fuertecoin-smartnode\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/fuertecoin.network\/site\/fuertecoin-smartnode\/","url":"https:\/\/fuertecoin.network\/site\/fuertecoin-smartnode\/","name":"Guide to Setting Up a FuerteCoin Smart Node on Linux Ubuntu 20 - FuerteCoin Network","isPartOf":{"@id":"https:\/\/fuertecoin.network\/site\/#website"},"primaryImageOfPage":{"@id":"https:\/\/fuertecoin.network\/site\/fuertecoin-smartnode\/#primaryimage"},"image":{"@id":"https:\/\/fuertecoin.network\/site\/fuertecoin-smartnode\/#primaryimage"},"thumbnailUrl":"https:\/\/fuertecoin.network\/site\/wp-content\/uploads\/2023\/12\/smartnode.webp","datePublished":"2023-12-03T16:18:15+00:00","dateModified":"2024-02-05T20:52:20+00:00","description":"This guide will walk you through the necessary steps to set up a FuerteCoin smart node on a server with Linux Ubuntu 20","breadcrumb":{"@id":"https:\/\/fuertecoin.network\/site\/fuertecoin-smartnode\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/fuertecoin.network\/site\/fuertecoin-smartnode\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/fuertecoin.network\/site\/fuertecoin-smartnode\/#primaryimage","url":"https:\/\/fuertecoin.network\/site\/wp-content\/uploads\/2023\/12\/smartnode.webp","contentUrl":"https:\/\/fuertecoin.network\/site\/wp-content\/uploads\/2023\/12\/smartnode.webp","width":1024,"height":1024},{"@type":"BreadcrumbList","@id":"https:\/\/fuertecoin.network\/site\/fuertecoin-smartnode\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/fuertecoin.network\/site\/"},{"@type":"ListItem","position":2,"name":"Guide to Setting Up a FuerteCoin Smart Node on Linux Ubuntu 20"}]},{"@type":"WebSite","@id":"https:\/\/fuertecoin.network\/site\/#website","url":"https:\/\/fuertecoin.network\/site\/","name":"FuerteCoin Network","description":"We aim for players to enjoy a gaming experience without the need to spend real money","publisher":{"@id":"https:\/\/fuertecoin.network\/site\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/fuertecoin.network\/site\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/fuertecoin.network\/site\/#organization","name":"FuerteCoin Network","url":"https:\/\/fuertecoin.network\/site\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/fuertecoin.network\/site\/#\/schema\/logo\/image\/","url":"https:\/\/fuertecoin.network\/site\/wp-content\/uploads\/2023\/12\/FuerteCoin.png","contentUrl":"https:\/\/fuertecoin.network\/site\/wp-content\/uploads\/2023\/12\/FuerteCoin.png","width":1080,"height":1080,"caption":"FuerteCoin Network"},"image":{"@id":"https:\/\/fuertecoin.network\/site\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/FuerteCoinNetwork","https:\/\/x.com\/fuertecoinFUEC","https:\/\/github.com\/GitFuec\/fuertecoin","https:\/\/discord.gg\/Q7K5JAPZEh","https:\/\/coinmarketcap.com\/community\/es\/profile\/SabiasQueSpace","https:\/\/bitcointalk.org\/index.php?topic=5481429","https:\/\/coinpaprika.com\/coin\/fuec-fuertecoin","https:\/\/www.livecoinwatch.com\/price\/Fuertecoin-FUEC","https:\/\/www.monedas.com\/fuertecoin","https:\/\/www.coinpare.io\/coin\/fuec-fuertecoin","https:\/\/www.youtube.com\/channel\/UClZLhqAgco4kramXGsoF_Iw"]},{"@type":"Person","@id":"https:\/\/fuertecoin.network\/site\/#\/schema\/person\/5eceee4710749dbc56588011e9141723","name":"usuariofuertecoin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/fuertecoin.network\/site\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/89f4d522069b309c5ed392ecf0eb227bb0851efd1ae3e47826ddc442834322d8?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/89f4d522069b309c5ed392ecf0eb227bb0851efd1ae3e47826ddc442834322d8?s=96&d=mm&r=g","caption":"usuariofuertecoin"},"sameAs":["https:\/\/fuertecoin.network\/site"],"url":"https:\/\/fuertecoin.network\/site\/author\/usuariofuertecoin\/"}]}},"_links":{"self":[{"href":"https:\/\/fuertecoin.network\/site\/wp-json\/wp\/v2\/posts\/475","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/fuertecoin.network\/site\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/fuertecoin.network\/site\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/fuertecoin.network\/site\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/fuertecoin.network\/site\/wp-json\/wp\/v2\/comments?post=475"}],"version-history":[{"count":8,"href":"https:\/\/fuertecoin.network\/site\/wp-json\/wp\/v2\/posts\/475\/revisions"}],"predecessor-version":[{"id":1518,"href":"https:\/\/fuertecoin.network\/site\/wp-json\/wp\/v2\/posts\/475\/revisions\/1518"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/fuertecoin.network\/site\/wp-json\/wp\/v2\/media\/1529"}],"wp:attachment":[{"href":"https:\/\/fuertecoin.network\/site\/wp-json\/wp\/v2\/media?parent=475"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/fuertecoin.network\/site\/wp-json\/wp\/v2\/categories?post=475"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/fuertecoin.network\/site\/wp-json\/wp\/v2\/tags?post=475"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}