{"id":2386,"date":"2020-03-12T10:28:32","date_gmt":"2020-03-12T10:28:32","guid":{"rendered":"http:\/\/bryceautomation.com\/?p=2386"},"modified":"2020-03-12T10:28:33","modified_gmt":"2020-03-12T10:28:33","slug":"navigating-linux","status":"publish","type":"post","link":"https:\/\/bryceautomation.com\/index.php\/2020\/03\/12\/navigating-linux\/","title":{"rendered":"Navigating Linux"},"content":{"rendered":"\n<h3 class=\"wp-block-heading\">Introduction to Navigating Linux<\/h3>\n\n\n\n<p>Navigating Linux from the command line becomes second nature if you have a Linux server.    Linux is an Open Source operating system, and having your own Linux server is a must for many hobbyists.    You can get your own Virtual Private Server for as little as $5 per month at <a href=\"https:\/\/www.linode.com\/?r=e74ad469f932a27c255a2013e86ce00a5d1e9827\">Linode<\/a>.  <\/p><div id=\"bryce-3216697062\" class=\"bryce-afterfirst bryce-entity-placement\"><script async src=\"\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js?client=ca-pub-8316758073402323\" crossorigin=\"anonymous\"><\/script><ins class=\"adsbygoogle\" style=\"display:block;\" data-ad-client=\"ca-pub-8316758073402323\" \ndata-ad-slot=\"7728240895\" \ndata-ad-format=\"auto\"><\/ins>\n<script> \n(adsbygoogle = window.adsbygoogle || []).push({}); \n<\/script>\n<\/div>\n\n\n\n<p>With a VPS,  you can set up your own web server, SQL Database server, etc.  for home automation.  By using Linux, you will usually save a lot of cash vs. other operating systems.  Getting around Linux might be a little intimidating at first though from the command line.<\/p>\n\n\n\n<p>Once you learn some basic commands, however, you will become much more comfortable.    <\/p>\n\n\n\n<p>The purpose of this post is simply to show how to navigate through directories in Linux to view the contents.   I will have other <a href=\"https:\/\/bryceautomation.com\/index.php\/category\/information-technology\/\">posts on certain administrative tasks.<\/a><\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Connecting to the VPS<\/h3>\n\n\n\n<p>One way to connect to a VPS is with <a href=\"https:\/\/www.chiark.greenend.org.uk\/~sgtatham\/putty\/latest.html\">PUTTY<\/a>.  Putty has a graphical interface to connect you to the terminal on your server.     Once PUTTY is installed, simply enter your hostname and port number.    In these examples, we will use SSH (secure shell).  Undeniably, SSH is a more secure method to connect to the terminal of your server than other protocols, such as Telnet.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"453\" height=\"424\" data-src=\"https:\/\/bryceautomation.com\/wp-content\/uploads\/2020\/03\/navconnect.png\" alt=\"\" class=\"wp-image-2387 lazyload\" data-srcset=\"https:\/\/bryceautomation.com\/wp-content\/uploads\/2020\/03\/navconnect.png 453w, https:\/\/bryceautomation.com\/wp-content\/uploads\/2020\/03\/navconnect-300x281.png 300w\" data-sizes=\"(max-width: 453px) 100vw, 453px\" src=\"data:image\/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==\" style=\"--smush-placeholder-width: 453px; --smush-placeholder-aspect-ratio: 453\/424;\" \/><\/figure>\n\n\n\n<p>If you already have Linux installed on your PC, simply go to a terminal.   At this point, simply type &#8220;ssh user@hostname.com -p 22&#8221;.  Replace the &#8220;22&#8221; with the port number of your server.   Although the default port number is 22, some administrators will change this.   This reduces brute force attacks on the server.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">su Command<\/h3>\n\n\n\n<p>The &#8220;su&#8221; command allows you to become the root user.    The root user is the main administrator on the server.    As root, you have the authority to do almost anything you want.    Although this makes life a little easier, be very careful when logged in as root.  I might become root user when inittially setting up a server.  After the server is set up, I will use the sudo command to run common maintenance commands instead.    The sudo command allows certain users to execute commands as root simply by typing sudo before the command  you wish to run.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"168\" height=\"52\" data-src=\"https:\/\/bryceautomation.com\/wp-content\/uploads\/2020\/03\/navsu.png\" alt=\"\" class=\"wp-image-2388 lazyload\" src=\"data:image\/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==\" style=\"--smush-placeholder-width: 168px; --smush-placeholder-aspect-ratio: 168\/52;\" \/><\/figure>\n\n\n\n<p>Notice the command prompt has a $ when you are a standard user.   You will see a # at the command prompt when you are a root user.<\/p>\n\n\n\n<p>pwd Command<\/p>\n\n\n\n<p>The pwd command will &#8220;print working directory&#8221;.   This will show you the directory that you are currently in.  In Linux, your directory simply starts with &#8220;\/&#8221;.   &#8220;\/&#8221; is similar to &#8220;C:&#8221; for those of you who have worked with Windows. <\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"155\" height=\"53\" data-src=\"https:\/\/bryceautomation.com\/wp-content\/uploads\/2020\/03\/navpwd.png\" alt=\"\" class=\"wp-image-2389 lazyload\" src=\"data:image\/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==\" style=\"--smush-placeholder-width: 155px; --smush-placeholder-aspect-ratio: 155\/53;\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">ls Command<\/h3>\n\n\n\n<p>&#8220;ls&#8221; is the &#8220;List&#8221; command.  This will show you the contents of a directory (folder).   A directory might contain other directories, as well as individual files.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"418\" height=\"66\" data-src=\"https:\/\/bryceautomation.com\/wp-content\/uploads\/2020\/03\/navls.png\" alt=\"\" class=\"wp-image-2390 lazyload\" data-srcset=\"https:\/\/bryceautomation.com\/wp-content\/uploads\/2020\/03\/navls.png 418w, https:\/\/bryceautomation.com\/wp-content\/uploads\/2020\/03\/navls-300x47.png 300w\" data-sizes=\"(max-width: 418px) 100vw, 418px\" src=\"data:image\/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==\" style=\"--smush-placeholder-width: 418px; --smush-placeholder-aspect-ratio: 418\/66;\" \/><\/figure>\n\n\n\n<p>Additionally, by typing &#8220;ls -al&#8221;, you will see more information about each file and directory.  You will see hidden files and folders as well.  When the first character on a line is &#8220;d&#8221;, we know this is a directory.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"450\" height=\"264\" data-src=\"https:\/\/bryceautomation.com\/wp-content\/uploads\/2020\/03\/navlsal.png\" alt=\"\" class=\"wp-image-2391 lazyload\" data-srcset=\"https:\/\/bryceautomation.com\/wp-content\/uploads\/2020\/03\/navlsal.png 450w, https:\/\/bryceautomation.com\/wp-content\/uploads\/2020\/03\/navlsal-300x176.png 300w\" data-sizes=\"(max-width: 450px) 100vw, 450px\" src=\"data:image\/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==\" style=\"--smush-placeholder-width: 450px; --smush-placeholder-aspect-ratio: 450\/264;\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">cd Command<\/h3>\n\n\n\n<p>Finally, the &#8220;cd&#8221; command is how we change directories.  This is essential for Navigating Linux.  By typing &#8220;cd directoryname&#8221;, you will enter that directory.  When you type &#8220;cd ..&#8221; You will exit that directory, and enter the directory that is one level higher.<\/p>\n\n\n\n<p>For example.   Let&#8217;s say \/home\/ricky\/ contains a folder called &#8220;Downloads&#8221;  To enter the Downloads directory, I will simply type &#8220;cd \/home\/ricky\/Downloads&#8221; (space after cd).  At this point, if I type ls, I will list the contents of the Downloads directory.    If I type &#8220;cd ..&#8221; I will go up one directory.   Then, if I type &#8220;ls&#8221;, I will see the contents of \/home\/ricky.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"352\" height=\"246\" data-src=\"https:\/\/bryceautomation.com\/wp-content\/uploads\/2020\/03\/navcd2.png\" alt=\"\" class=\"wp-image-2392 lazyload\" data-srcset=\"https:\/\/bryceautomation.com\/wp-content\/uploads\/2020\/03\/navcd2.png 352w, https:\/\/bryceautomation.com\/wp-content\/uploads\/2020\/03\/navcd2-300x210.png 300w\" data-sizes=\"(max-width: 352px) 100vw, 352px\" src=\"data:image\/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==\" style=\"--smush-placeholder-width: 352px; --smush-placeholder-aspect-ratio: 352\/246;\" \/><\/figure>\n\n\n\n<p>For other information on Linux, visit the <a href=\"https:\/\/bryceautomation.com\/index.php\/category\/information-technology\/\">Information Technology Category page!<\/a><\/p>\n\n\n\n<p>&#8212; Ricky Bryce<\/p>\n<div id=\"bryce-370225379\" class=\"bryce-after-content bryce-entity-placement\"><script async src=\"\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js?client=ca-pub-8316758073402323\" crossorigin=\"anonymous\"><\/script><ins class=\"adsbygoogle\" style=\"display:block;\" data-ad-client=\"ca-pub-8316758073402323\" \ndata-ad-slot=\"4667596182\" \ndata-ad-format=\"auto\"><\/ins>\n<script> \n(adsbygoogle = window.adsbygoogle || []).push({}); \n<\/script>\n<\/div>","protected":false},"excerpt":{"rendered":"<p>Introduction to Navigating Linux Navigating Linux from the command line becomes second nature if you have a Linux server. Linux is an Open Source operating system, and having your own Linux server is a must for many hobbyists. You can get your own Virtual Private Server for as little as $5 per month at Linode. <a class=\"moretag btn btn-primary\" href=\"https:\/\/bryceautomation.com\/index.php\/2020\/03\/12\/navigating-linux\/\">Read More \u00bb<\/a><\/p>\n","protected":false},"author":1,"featured_media":2391,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[3],"tags":[189,190,191],"class_list":{"0":"post-2386","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-information-technology","8":"tag-information-technology","9":"tag-linux","10":"tag-navigation","11":"czr-hentry"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Navigating Linux using command line instructions from the terminal<\/title>\n<meta name=\"description\" content=\"Navigating Linux from the command line -- We will discuss how to log on to the server, and navigation commands such as pwd, ls, and cd.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/bryceautomation.com\/index.php\/2020\/03\/12\/navigating-linux\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Navigating Linux using command line instructions from the terminal\" \/>\n<meta property=\"og:description\" content=\"Navigating Linux from the command line -- We will discuss how to log on to the server, and navigation commands such as pwd, ls, and cd.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/bryceautomation.com\/index.php\/2020\/03\/12\/navigating-linux\/\" \/>\n<meta property=\"og:site_name\" content=\"Bryce Automation\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/ricky.bryce.7\" \/>\n<meta property=\"article:published_time\" content=\"2020-03-12T10:28:32+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-03-12T10:28:33+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/bryceautomation.com\/wp-content\/uploads\/2020\/03\/navlsal.png\" \/>\n\t<meta property=\"og:image:width\" content=\"450\" \/>\n\t<meta property=\"og:image:height\" content=\"264\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Ricky\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2020\\\/03\\\/12\\\/navigating-linux\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2020\\\/03\\\/12\\\/navigating-linux\\\/\"},\"author\":{\"name\":\"Ricky\",\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/#\\\/schema\\\/person\\\/5d5b0f6f6ad768f1ee52968338e63af7\"},\"headline\":\"Navigating Linux\",\"datePublished\":\"2020-03-12T10:28:32+00:00\",\"dateModified\":\"2020-03-12T10:28:33+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2020\\\/03\\\/12\\\/navigating-linux\\\/\"},\"wordCount\":625,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2020\\\/03\\\/12\\\/navigating-linux\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/bryceautomation.com\\\/wp-content\\\/uploads\\\/2020\\\/03\\\/navlsal.png\",\"keywords\":[\"Information Technology\",\"Linux\",\"Navigation\"],\"articleSection\":[\"Information Technology\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2020\\\/03\\\/12\\\/navigating-linux\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2020\\\/03\\\/12\\\/navigating-linux\\\/\",\"url\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2020\\\/03\\\/12\\\/navigating-linux\\\/\",\"name\":\"Navigating Linux using command line instructions from the terminal\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2020\\\/03\\\/12\\\/navigating-linux\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2020\\\/03\\\/12\\\/navigating-linux\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/bryceautomation.com\\\/wp-content\\\/uploads\\\/2020\\\/03\\\/navlsal.png\",\"datePublished\":\"2020-03-12T10:28:32+00:00\",\"dateModified\":\"2020-03-12T10:28:33+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/#\\\/schema\\\/person\\\/5d5b0f6f6ad768f1ee52968338e63af7\"},\"description\":\"Navigating Linux from the command line -- We will discuss how to log on to the server, and navigation commands such as pwd, ls, and cd.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2020\\\/03\\\/12\\\/navigating-linux\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2020\\\/03\\\/12\\\/navigating-linux\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2020\\\/03\\\/12\\\/navigating-linux\\\/#primaryimage\",\"url\":\"https:\\\/\\\/bryceautomation.com\\\/wp-content\\\/uploads\\\/2020\\\/03\\\/navlsal.png\",\"contentUrl\":\"https:\\\/\\\/bryceautomation.com\\\/wp-content\\\/uploads\\\/2020\\\/03\\\/navlsal.png\",\"width\":450,\"height\":264,\"caption\":\"Navigating Linux\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2020\\\/03\\\/12\\\/navigating-linux\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/bryceautomation.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Navigating Linux\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/#website\",\"url\":\"https:\\\/\\\/bryceautomation.com\\\/\",\"name\":\"Bryce Automation\",\"description\":\"Automating Home and Industry...\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/bryceautomation.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/#\\\/schema\\\/person\\\/5d5b0f6f6ad768f1ee52968338e63af7\",\"name\":\"Ricky\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/wp-content\\\/wphb-cache\\\/gravatar\\\/a8f\\\/a8fe6bf79d292b388ffee281ccb12488x96.jpg\",\"url\":\"https:\\\/\\\/bryceautomation.com\\\/wp-content\\\/wphb-cache\\\/gravatar\\\/a8f\\\/a8fe6bf79d292b388ffee281ccb12488x96.jpg\",\"contentUrl\":\"https:\\\/\\\/bryceautomation.com\\\/wp-content\\\/wphb-cache\\\/gravatar\\\/a8f\\\/a8fe6bf79d292b388ffee281ccb12488x96.jpg\",\"caption\":\"Ricky\"},\"sameAs\":[\"http:\\\/\\\/bryceautomation.com\",\"https:\\\/\\\/www.facebook.com\\\/ricky.bryce.7\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/ricky-bryce-4367a416\\\/\"],\"url\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/author\\\/ricky\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Navigating Linux using command line instructions from the terminal","description":"Navigating Linux from the command line -- We will discuss how to log on to the server, and navigation commands such as pwd, ls, and cd.","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:\/\/bryceautomation.com\/index.php\/2020\/03\/12\/navigating-linux\/","og_locale":"en_US","og_type":"article","og_title":"Navigating Linux using command line instructions from the terminal","og_description":"Navigating Linux from the command line -- We will discuss how to log on to the server, and navigation commands such as pwd, ls, and cd.","og_url":"https:\/\/bryceautomation.com\/index.php\/2020\/03\/12\/navigating-linux\/","og_site_name":"Bryce Automation","article_author":"https:\/\/www.facebook.com\/ricky.bryce.7","article_published_time":"2020-03-12T10:28:32+00:00","article_modified_time":"2020-03-12T10:28:33+00:00","og_image":[{"width":450,"height":264,"url":"https:\/\/bryceautomation.com\/wp-content\/uploads\/2020\/03\/navlsal.png","type":"image\/png"}],"author":"Ricky","twitter_card":"summary_large_image","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/bryceautomation.com\/index.php\/2020\/03\/12\/navigating-linux\/#article","isPartOf":{"@id":"https:\/\/bryceautomation.com\/index.php\/2020\/03\/12\/navigating-linux\/"},"author":{"name":"Ricky","@id":"https:\/\/bryceautomation.com\/#\/schema\/person\/5d5b0f6f6ad768f1ee52968338e63af7"},"headline":"Navigating Linux","datePublished":"2020-03-12T10:28:32+00:00","dateModified":"2020-03-12T10:28:33+00:00","mainEntityOfPage":{"@id":"https:\/\/bryceautomation.com\/index.php\/2020\/03\/12\/navigating-linux\/"},"wordCount":625,"commentCount":0,"image":{"@id":"https:\/\/bryceautomation.com\/index.php\/2020\/03\/12\/navigating-linux\/#primaryimage"},"thumbnailUrl":"https:\/\/bryceautomation.com\/wp-content\/uploads\/2020\/03\/navlsal.png","keywords":["Information Technology","Linux","Navigation"],"articleSection":["Information Technology"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/bryceautomation.com\/index.php\/2020\/03\/12\/navigating-linux\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/bryceautomation.com\/index.php\/2020\/03\/12\/navigating-linux\/","url":"https:\/\/bryceautomation.com\/index.php\/2020\/03\/12\/navigating-linux\/","name":"Navigating Linux using command line instructions from the terminal","isPartOf":{"@id":"https:\/\/bryceautomation.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/bryceautomation.com\/index.php\/2020\/03\/12\/navigating-linux\/#primaryimage"},"image":{"@id":"https:\/\/bryceautomation.com\/index.php\/2020\/03\/12\/navigating-linux\/#primaryimage"},"thumbnailUrl":"https:\/\/bryceautomation.com\/wp-content\/uploads\/2020\/03\/navlsal.png","datePublished":"2020-03-12T10:28:32+00:00","dateModified":"2020-03-12T10:28:33+00:00","author":{"@id":"https:\/\/bryceautomation.com\/#\/schema\/person\/5d5b0f6f6ad768f1ee52968338e63af7"},"description":"Navigating Linux from the command line -- We will discuss how to log on to the server, and navigation commands such as pwd, ls, and cd.","breadcrumb":{"@id":"https:\/\/bryceautomation.com\/index.php\/2020\/03\/12\/navigating-linux\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/bryceautomation.com\/index.php\/2020\/03\/12\/navigating-linux\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/bryceautomation.com\/index.php\/2020\/03\/12\/navigating-linux\/#primaryimage","url":"https:\/\/bryceautomation.com\/wp-content\/uploads\/2020\/03\/navlsal.png","contentUrl":"https:\/\/bryceautomation.com\/wp-content\/uploads\/2020\/03\/navlsal.png","width":450,"height":264,"caption":"Navigating Linux"},{"@type":"BreadcrumbList","@id":"https:\/\/bryceautomation.com\/index.php\/2020\/03\/12\/navigating-linux\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/bryceautomation.com\/"},{"@type":"ListItem","position":2,"name":"Navigating Linux"}]},{"@type":"WebSite","@id":"https:\/\/bryceautomation.com\/#website","url":"https:\/\/bryceautomation.com\/","name":"Bryce Automation","description":"Automating Home and Industry...","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/bryceautomation.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/bryceautomation.com\/#\/schema\/person\/5d5b0f6f6ad768f1ee52968338e63af7","name":"Ricky","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/bryceautomation.com\/wp-content\/wphb-cache\/gravatar\/a8f\/a8fe6bf79d292b388ffee281ccb12488x96.jpg","url":"https:\/\/bryceautomation.com\/wp-content\/wphb-cache\/gravatar\/a8f\/a8fe6bf79d292b388ffee281ccb12488x96.jpg","contentUrl":"https:\/\/bryceautomation.com\/wp-content\/wphb-cache\/gravatar\/a8f\/a8fe6bf79d292b388ffee281ccb12488x96.jpg","caption":"Ricky"},"sameAs":["http:\/\/bryceautomation.com","https:\/\/www.facebook.com\/ricky.bryce.7","https:\/\/www.linkedin.com\/in\/ricky-bryce-4367a416\/"],"url":"https:\/\/bryceautomation.com\/index.php\/author\/ricky\/"}]}},"_links":{"self":[{"href":"https:\/\/bryceautomation.com\/index.php\/wp-json\/wp\/v2\/posts\/2386","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/bryceautomation.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/bryceautomation.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/bryceautomation.com\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/bryceautomation.com\/index.php\/wp-json\/wp\/v2\/comments?post=2386"}],"version-history":[{"count":0,"href":"https:\/\/bryceautomation.com\/index.php\/wp-json\/wp\/v2\/posts\/2386\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/bryceautomation.com\/index.php\/wp-json\/wp\/v2\/media\/2391"}],"wp:attachment":[{"href":"https:\/\/bryceautomation.com\/index.php\/wp-json\/wp\/v2\/media?parent=2386"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/bryceautomation.com\/index.php\/wp-json\/wp\/v2\/categories?post=2386"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/bryceautomation.com\/index.php\/wp-json\/wp\/v2\/tags?post=2386"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}