{"id":6264,"date":"2020-12-27T08:27:16","date_gmt":"2020-12-27T08:27:16","guid":{"rendered":"http:\/\/hengowebsite.luong.fr\/?page_id=6264"},"modified":"2021-03-06T19:24:35","modified_gmt":"2021-03-06T19:24:35","slug":"ubuntu01","status":"publish","type":"page","link":"https:\/\/hengowebsite.luong.fr\/?page_id=6264","title":{"rendered":"Ubuntu01"},"content":{"rendered":"<div id='layer_slider_1'  class='avia-layerslider main_color avia-shadow  avia-builder-el-0  el_before_av_textblock  avia-builder-el-first  container_wrap fullsize' style='  height: 701px;' ><\/div><div id='after_layer_slider_1'  class='main_color av_default_container_wrap container_wrap fullsize' style=' '  ><div class='container' ><div class='template-page content  av-content-full alpha units'><div class='post-entry post-entry-type-page post-entry-6264'><div class='entry-content-wrapper clearfix'>\n<section class=\"av_textblock_section \"  itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/CreativeWork\" ><div class='avia_textblock  '   itemprop=\"text\" ><p>Cliquer ici pour ajouter votre propre texte<\/p>\n<\/div><\/section>\n<div class=\"flex_column av_one_full  flex_column_div av-zero-column-padding first  avia-builder-el-2  el_after_av_textblock  el_before_av_one_full  column-top-margin\" style='border-radius:0px; '><section class=\"av_textblock_section \"  itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/CreativeWork\" ><div class='avia_textblock  '   itemprop=\"text\" ><h2 style=\"text-align: center;\">LINUX FSTAB &#8211; MOUNT TABLE<\/h2>\n<p style=\"text-align: center;\">\n<h3 style=\"text-align: center;\">Linux&rsquo;s Mount Table \/etc\/fstab<\/h3>\n<pre><code><strong>root@centos ~]# cat \/etc\/fstab\n\n#\n# \/etc\/fstab\n# Created by anaconda on Wed Jan  9 22:27:17 2013\n#\n\/dev\/mapper\/vg_centos-lv_root \/                       ext4    defaults  1 1\nUUID=65e88b9b-a4b7-408b-86a5-335c9f91c404 \/boot       ext4    defaults  1 2\n\/dev\/mapper\/vg_centos-lv_swap swap                    swap    defaults  0 0\ntmpfs                   \/dev\/shm                tmpfs   defaults  0 0\ndevpts                  \/dev\/pts                devpts  gid=5,mode=620  0 0\nsysfs                   \/sys                    sysfs   defaults  0 0\nproc                    \/proc                   proc    defaults  0 0\n#\n# Added for fstab demo landoflinux.com\n#\n\/dev\/sdb1               \/test1                  ext3    defaults  0 0\n\/dev\/sdb2               \/test2                  ext3    defaults  0 0\n\/dev\/sdb3               \/test3                  ext3    defaults  0 0\n\/dev\/sdb5               \/test4                  ext3    defaults  0 0\n\/dev\/sdb6               \/test5                  ext3    defaults  0 0\n\/dev\/sdb7               \/test6                  ext3    defaults  0 0\n\/dev\/sdb8               \/test7                  ext3    defaults  0 0\n<\/strong><\/code><\/pre>\n<p>The location of the mount table is held in a file located in the following path: \u00ab\u00a0\/etc\/fstab\u00a0\u00bb. This file is generally maintained by the system administrator of the server. Each line within the file describes the device\/filesystems that are available to your system. Each field is separated by spaces or a tab. There are six fields for each entry:<\/p>\n<p><strong>Field One:\u00a0<\/strong>Filesystem &#8211; This field describes the device or filesystem that is to be mounted. Ordinary mounts such as \u00ab\u00a0\/dev\/sdb1\u00a0\u00bb can be seen here. You may also come across NFS mounts. These are filesystems that are hosted by a remote server. These can be identified easily by the \u00ab\u00a0nfs\u00a0\u00bb<\/p>\n<p>\/rmtserver:\/opt\/test \/mynfs nfs ro,bg 0 0<\/p>\n<p>The above \u00ab\u00a0nfs\u00a0\u00bb example will mount \u00ab\u00a0\/opt\/test\u00a0\u00bb from the remote server \u00ab\u00a0rmtserver\u00a0\u00bb on the local mount point \u00ab\u00a0\/mynfs\u00a0\u00bb. This will be a read only mount. The \u00ab\u00a0bg\u00a0\u00bb specifies that it should be mounted as a background task.<\/p>\n<p>On many newer systems it is quite common to see devices specified by there \u00ab\u00a0UUID\u00a0\u00bb Universal Unique Identifier.<\/p>\n<p><strong>Field Two:\u00a0<\/strong>Mount Point field. For a \u00ab\u00a0swap\u00a0\u00bb partition this field should be specified as \u00ab\u00a0none\u00a0\u00bb.<\/p>\n<p><strong>Field Three:\u00a0<\/strong>This field describes the type of filesystem. Linux can support many different filesystems &#8211; \u00ab\u00a0ext2, ext3, ext4, hfs, iso9600, minix, msdos, nfs, ntfs, reiserfs, smbfs, vfat, xfs plus many more.\u00a0\u00bb For filesystems supported by the running kernel see \u00ab\u00a0\/proc\/filesystems\u00a0\u00bb.<\/p>\n<p><strong>Field Four:\u00a0<\/strong>This field describes the mount options associated with the filesystem. This is a comma separated list. It should contain the type of mount plus any additional options.<\/p>\n<p><strong>Basic Filesystem options:<\/strong><\/p>\n<p><strong>defaults<\/strong><br \/>\nUse default options: rw, suid, dev, exec, auto, nouser and async.<\/p>\n<p><strong>auto<\/strong><br \/>\nMount automatically at boot time.<\/p>\n<p><strong>noauto<\/strong><br \/>\nDo not mount automatically at boot time.<\/p>\n<p><strong>user<\/strong><br \/>\nAllow a normal user to mount.<\/p>\n<p><strong>owner<\/strong><br \/>\nAllow device owner to mount.<\/p>\n<p><strong>comment<\/strong><br \/>\nUsed by fstab maintaining programs.<\/p>\n<p><strong>nofail<\/strong><br \/>\nDo not report errors if this does not exist.<\/p>\n<p><strong>Field Five:<\/strong>This field is used to identify which filesystems should by dumped by the \u00ab\u00a0dump\u00a0\u00bb command. A value of zero \u00ab\u00a00\u00a0\u00bb indicates that no dump is to take place.<\/p>\n<p><strong>Field Six:<\/strong>This field is used by the \u00ab\u00a0fsck\u00a0\u00bb program to determine the order of which filesystems checks are done at reboot time. The \u00ab\u00a0\/\u00a0\u00bb root filesystem should have a value of \u00ab\u00a01\u00a0\u00bb and other filesystems should have a value of \u00ab\u00a02\u00a0\u00bb. If this filed is not present or has a value of \u00ab\u00a00\u00a0\u00bb then it is assumed that no check is to take place.<\/p>\n<h5 style=\"text-align: center;\"><\/h5>\n<h6><\/h6>\n<\/div><\/section><\/div><div class=\"flex_column av_one_full  flex_column_div av-zero-column-padding first  avia-builder-el-4  el_after_av_one_full  el_before_av_textblock  column-top-margin\" style='border-radius:0px; '><section class=\"av_textblock_section \"  itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/CreativeWork\" ><div class='avia_textblock  '   itemprop=\"text\" ><h1 style=\"text-align: center;\">Documentations<\/h1>\n<h5 style=\"text-align: center;\"><span style=\"color: #ff0000;\"><em><a style=\"color: #ff0000;\" href=\"https:\/\/linuxconfig.org\/ubuntu-20-04-guide\" target=\"_blank\" rel=\"noopener noreferrer\">https:\/\/linuxconfig.org\/ubuntu-20-04-guide<\/a><\/em><\/span><\/h5>\n<p style=\"text-align: center;\">Dvd ISO Ubuntu20<\/p>\n<h2 style=\"text-align: center;\">Commandes<\/h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ff0000;\"><em>$ sudo apt install net-tools<\/em><\/span><br \/>\n<span style=\"color: #ff0000;\"><em>$ sudo apt update<\/em><\/span><br \/>\n<span style=\"color: #ff0000;\"><em>$ sudo apt upgrade<\/em><\/span><\/h5>\n<h6><\/h6>\n<\/div><\/section><\/div><\/p>\n<section class=\"av_textblock_section \"  itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/CreativeWork\" ><div class='avia_textblock  '   itemprop=\"text\" ><h1 class=\"blue\" style=\"text-align: center;\">NGINX vs. Apache<\/h1>\n<h5 class=\"blue\" style=\"text-align: center;\">Comparaison des architectures et des possibilit\u00e9s de configuration et d\u2019extension<\/h5>\n<p style=\"text-align: center;\">\n<p style=\"text-align: center;\"><em><span style=\"color: #ff0000;\"><a style=\"color: #ff0000;\" href=\"https:\/\/www.ionos.fr\/digitalguide\/serveur\/know-how\/nginx-vs-apache\/\" target=\"_blank\" rel=\"noopener noreferrer\">https:\/\/www.ionos.fr\/digitalguide\/serveur\/know-how\/nginx-vs-apache\/<\/a><\/span><\/em><\/p>\n<\/div><\/section>\n<div class=\"flex_column av_one_full  flex_column_div av-zero-column-padding first  avia-builder-el-7  el_after_av_textblock  avia-builder-el-last  column-top-margin\" style='border-radius:0px; '><\/div>\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"ngg_post_thumbnail":0},"_links":{"self":[{"href":"https:\/\/hengowebsite.luong.fr\/index.php?rest_route=\/wp\/v2\/pages\/6264"}],"collection":[{"href":"https:\/\/hengowebsite.luong.fr\/index.php?rest_route=\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/hengowebsite.luong.fr\/index.php?rest_route=\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/hengowebsite.luong.fr\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/hengowebsite.luong.fr\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=6264"}],"version-history":[{"count":15,"href":"https:\/\/hengowebsite.luong.fr\/index.php?rest_route=\/wp\/v2\/pages\/6264\/revisions"}],"predecessor-version":[{"id":6509,"href":"https:\/\/hengowebsite.luong.fr\/index.php?rest_route=\/wp\/v2\/pages\/6264\/revisions\/6509"}],"wp:attachment":[{"href":"https:\/\/hengowebsite.luong.fr\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=6264"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}