{"id":3038,"date":"2020-12-30T18:36:29","date_gmt":"2020-12-30T18:36:29","guid":{"rendered":"https:\/\/linuxways.net\/?p=3038"},"modified":"2020-12-31T14:36:21","modified_gmt":"2020-12-31T14:36:21","slug":"how-to-configure-nfs-server-and-client-on-linux-mint-20","status":"publish","type":"post","link":"https:\/\/linuxways.net\/de\/mint\/how-to-configure-nfs-server-and-client-on-linux-mint-20\/","title":{"rendered":"How to Configure NFS Server and Client on Linux Mint 20"},"content":{"rendered":"<p>NFS (Network File System) works in the form of a client-server model where the machine sharing the directories is known as the NFS server whereas the machine accessing those directories is known as the NFS client. In our previous post, we shared with you how to configure the NFS client and server on the <a href=\"https:\/\/linuxways.net\/de\/debian\/how-to-configure-nfs-client-and-server-on-linux\/\">Debian<\/a> system. This post will be about how to configure the NFS server and client on Linux Mint 20.<\/p>\n<p><strong>Note:<\/strong><\/p>\n<p>For the demonstration, we will be using the two machines with the following details:<\/p>\n<p>NFS Server (Linux Mint 20)<\/p>\n<ul>\n<li>Hostname: server<\/li>\n<li>IP: 192.168.72.170<\/li>\n<\/ul>\n<p>NFS Client (Linux Mint 20)<\/p>\n<ul>\n<li>Hostname: client<\/li>\n<li>IP: 192.168.72.191<\/li>\n<\/ul>\n<h2>Setting up NFS server<\/h2>\n<h3>Step 1: Install NFS Server<\/h3>\n<p>On the machine to be setup as an NFS server, you will need to install <strong>nfs-kernel-server<\/strong>. First, update the local repository index:<\/p>\n<pre>$ sudo apt update<\/pre>\n<p>Enter the password for sudo.<\/p>\n<p>Then install <strong>nfs-kernel-server<\/strong> package as follows:<\/p>\n<pre>$ sudo apt install nfs-kernel-server<\/pre>\n<p>After running the above command, the system will prompt with the <strong>y\/n<\/strong> option. Hit <strong>y<\/strong> to continue the installation.<\/p>\n<p>After the installation is completed, you can verify it by running the following command in Terminal:<\/p>\n<pre>$ dpkg -l | grep nfs-kernel-server<\/pre>\n<p>If you see the below similar output, it shows the NFS server has been installed successfully. <img loading=\"lazy\" decoding=\"async\" width=\"769\" height=\"68\" class=\"wp-image-3039\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2020\/12\/word-image-488.png\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2020\/12\/word-image-488.png 769w, https:\/\/linuxways.net\/wp-content\/uploads\/2020\/12\/word-image-488-300x27.png 300w\" sizes=\"auto, (max-width: 769px) 100vw, 769px\" \/><\/p>\n<h3>Step 2: Create an Export Directory<\/h3>\n<p>On the server machine, create an export directory you want to share with the clients. Let&#8217;s say we want to export two directories <strong>\/var\/nfs<\/strong>&#8211;<strong>share<\/strong> and <strong>\/var\/nfs-share1. First, we will have to create these directories. Run the following commands with sudo to do so:<\/strong><\/p>\n<pre>$ sudo mkdir -p \/var\/nfs-share<\/pre>\n<pre>$ sudo mkdir -p \/var\/nfs-share1<\/pre>\n<p><img loading=\"lazy\" decoding=\"async\" width=\"553\" height=\"66\" class=\"wp-image-3040\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2020\/12\/word-image-489.png\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2020\/12\/word-image-489.png 553w, https:\/\/linuxways.net\/wp-content\/uploads\/2020\/12\/word-image-489-300x36.png 300w\" sizes=\"auto, (max-width: 553px) 100vw, 553px\" \/><\/p>\n<p>As these directories were created with sudo, therefore the root user currently owns them. You can verify it by running the <em>ls<\/em> commands as follows:<\/p>\n<pre>$ ls -la \/var\/nfs-share<\/pre>\n<pre>$ ls -la \/var\/nfs-share1<\/pre>\n<p>From our two export directories (<strong>\/var\/ nfs-share <\/strong>and<strong> \/var\/ nfs-share1<\/strong>), we will change the ownership of one of the directory <strong>\/var\/ nfs-share<\/strong> to <strong>nobody:nogroup. <\/strong>We will not change the ownership of the second directory; it will remain owned by the root user.<\/p>\n<p>Run the following command to change the ownership of <strong>\/var\/ nfs-share <\/strong>directory from root to<strong> nobody:nogroup:<\/strong><\/p>\n<pre><strong>$<\/strong> sudo chown nobody:nogroup \/var\/nfs-share<\/pre>\n<p>You can confirm the new owner through the following command:<\/p>\n<pre>$ ls -la \/var\/ nfs-share<\/pre>\n<p>The following output confirms that the <strong>\/var\/ nfs-share <\/strong>is now owned by<strong> nobody:nogroup.<\/strong><\/p>\n<p><img loading=\"lazy\" decoding=\"async\" width=\"552\" height=\"90\" class=\"wp-image-3041\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2020\/12\/word-image-490.png\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2020\/12\/word-image-490.png 552w, https:\/\/linuxways.net\/wp-content\/uploads\/2020\/12\/word-image-490-300x49.png 300w\" sizes=\"auto, (max-width: 552px) 100vw, 552px\" \/><\/p>\n<h3><strong>Step 3: Configure and Share the NFS Exports <\/strong><\/h3>\n<p>Next, we will configure NFS for the sharing of the export directories. The NFS configuration file is <strong>\/etc\/exports<\/strong> which determine which clients will have access to the exported directories.<\/p>\n<p>In the <strong>\/etc\/exports<\/strong> file, add the configuration lines using the following syntax:<\/p>\n<pre>export_directory1 client1(options) client2(options)...clientN(options)...\n\nexport_directory2 client1(options) client2(options)...clientN(options)...\n\n\u2026\n\nexport_directoryN client1(options) client2(options)...clientN(options)...<\/pre>\n<p>Where<\/p>\n<ul>\n<li><strong>export_directory<\/strong> is the directory you want to share.<\/li>\n<li><strong>client<\/strong> is the IP address or the subnet of the client that wants to access the shared directories. To find the IP address of a machine, you can visit our post on <a href=\"https:\/\/linuxways.net\/de\/mint\/5-ways-to-find-your-private-ip-address-in-linux-mint-20\/\">How to Find the IP address<\/a>.<\/li>\n<li><strong>options<\/strong> specify how the resources should be shared.<\/li>\n<\/ul>\n<p>These configuration lines basically specify the directories we are going to export and who can access them.<\/p>\n<p>In order to share our NFS export directories <strong>(\/var\/ nfs-share<\/strong> and <strong>\/var\/ nfs-share1<\/strong>) to client IP addres <strong>192.168.72.191<\/strong>, we will add following lines in the configuration file <strong>\/etc\/exports<\/strong>.<\/p>\n<pre>\/var\/nfs-share 192.168.72.191(rw,sync,no_subtree_check)<\/pre>\n<pre>\/var\/nfs-share1 192.168.72.191(rw,sync, no_root_squash,no_subtree_check)<\/pre>\n<p>Our configuration lines specify the directories (<strong>nfs-share<\/strong> and <strong>nfs-share1<\/strong>) we want to export to the client <strong>192.168.72.191<\/strong> with read-write, sync, and <strong>no_subtree_check <\/strong>options. In the second entry, you can find the <strong>no_root_squash<\/strong> option which gives the client root permission on the server. You can visit more information about the <strong>options<\/strong> on the exports <a href=\"https:\/\/man7.org\/linux\/man-pages\/man5\/exports.5.html\">man<\/a> page.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" width=\"809\" height=\"175\" class=\"wp-image-3042\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2020\/12\/word-image-491.png\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2020\/12\/word-image-491.png 809w, https:\/\/linuxways.net\/wp-content\/uploads\/2020\/12\/word-image-491-300x65.png 300w, https:\/\/linuxways.net\/wp-content\/uploads\/2020\/12\/word-image-491-768x166.png 768w\" sizes=\"auto, (max-width: 809px) 100vw, 809px\" \/><\/p>\n<p>Save and close the file.<\/p>\n<p>Now you will have to share the exports configured in the <strong>\/etc\/exports<\/strong>. You can do so using the following command in Terminal:<\/p>\n<pre>$ sudo exportfs -av<\/pre>\n<p>The following output shows that the NFS server is exporting the shared directories to the clients.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" width=\"459\" height=\"88\" class=\"wp-image-3043\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2020\/12\/word-image-492.png\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2020\/12\/word-image-492.png 459w, https:\/\/linuxways.net\/wp-content\/uploads\/2020\/12\/word-image-492-300x58.png 300w\" sizes=\"auto, (max-width: 459px) 100vw, 459px\" \/><\/p>\n<p>Alternatively, you can also export the shares by restarting the NFS service:<\/p>\n<pre>$ sudo systemctl restart nfs-kernel-server<\/pre>\n<p>You can also check the NFS service status to ensure if it is actively running. Here is the command to do so:<\/p>\n<pre>$ sudo systemctl status nfs-kernel-server<\/pre>\n<p>The following output indicates the NFS server is running fine without any issues.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" width=\"671\" height=\"113\" class=\"wp-image-3044\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2020\/12\/word-image-493.png\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2020\/12\/word-image-493.png 671w, https:\/\/linuxways.net\/wp-content\/uploads\/2020\/12\/word-image-493-300x51.png 300w\" sizes=\"auto, (max-width: 671px) 100vw, 671px\" \/><\/p>\n<h3>Step 4: Add a Firewall Rule for NFS Traffic<\/h3>\n<p>First, check if a firewall is enabled on your server by running the following command in Terminal:<\/p>\n<pre>$ sudo ufw status<\/pre>\n<p>If you see the <strong>active <\/strong>status in output, it means the firewall is enabled. Therefore, now you will have to add a rule in the firewall for NFS traffic.<\/p>\n<p>Using the following syntax, add a rule in the firewall to allow clients to NFS port <strong>2049.<\/strong><\/p>\n<pre>$ sudo ufw allow from client_ip\/subnet_ID to any port nfs<\/pre>\n<p>For example, you can run the following command to allow client subnet <strong>192.168.72.0\/24<\/strong> access to NFS server port <strong>2049<\/strong>:<\/p>\n<pre>$ sudo ufw allow from 192.168.72.0\/24 to any port nfs<\/pre>\n<p>Now to check if the firewall rule has been added successfully, run the following command:<\/p>\n<pre>$ sudo ufw status<\/pre>\n<p>The following output shows the rule has been added which allows the connection from <strong>192.168.72.0\/24<\/strong> to port <strong>2049<\/strong>.<\/p>\n<h2><img loading=\"lazy\" decoding=\"async\" width=\"632\" height=\"160\" class=\"wp-image-3045\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2020\/12\/word-image-494.png\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2020\/12\/word-image-494.png 632w, https:\/\/linuxways.net\/wp-content\/uploads\/2020\/12\/word-image-494-300x76.png 300w\" sizes=\"auto, (max-width: 632px) 100vw, 632px\" \/><\/h2>\n<h2>Setting up NFS Client<\/h2>\n<h3>Step 1: Install NFS Client<\/h3>\n<p>On the machine to be setup as an NFS client, you will need to install <strong>nfs-common<\/strong> package on it. You can install it as follows:<\/p>\n<p>First, update the local repository index:<\/p>\n<pre>$ sudo apt update<\/pre>\n<p>Enter the password for sudo.<\/p>\n<p>Then install <strong>nfs-common<\/strong> package:<\/p>\n<pre>$ sudo apt install nfs-common<\/pre>\n<p>After running the above command, the shell will prompt with the <strong>y\/n<\/strong> choice. Press <strong>y<\/strong> to continue the procedure.<\/p>\n<p>After the installation of client package is completed, you can verify it as follows:<\/p>\n<pre>$ dpkg -l | grep nfs-common<\/pre>\n<p>If you see the below similar output, it shows the NFS client has been installed successfully.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" width=\"702\" height=\"64\" class=\"wp-image-3046\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2020\/12\/word-image-495.png\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2020\/12\/word-image-495.png 702w, https:\/\/linuxways.net\/wp-content\/uploads\/2020\/12\/word-image-495-300x27.png 300w\" sizes=\"auto, (max-width: 702px) 100vw, 702px\" \/><\/p>\n<h3>Step 2: Create Mount Points<\/h3>\n<p>To mount the NFS shares on your client machine, you will first have to create the mount points. We will be creating two directories for our mount points:<\/p>\n<pre>$ sudo mkdir -p \/media\/nfs-share<\/pre>\n<pre>$ sudo mkdir -p \/media\/nfs-share1<\/pre>\n<h3>Step 3: Mount NFS Shares on the Client Manually<\/h3>\n<p>Now that we have the mount points, we can mount the NFS shares exported from the NFS server on the client. Use the following syntax to mount the NFS shares:<\/p>\n<pre>$ sudo mount NFS_server:NFS_export_directory client_mountpoint<\/pre>\n<p>In the above command syntax:<\/p>\n<ul>\n<li><strong>NFS_server:<\/strong> Enter IP address of NFS server<\/li>\n<li><strong>NFS_export:<\/strong> Enter NFS export directory shared by the NFS server<\/li>\n<li><strong>client_mountpoint:<\/strong> Enter the mount point of the client where you want to mount the NFS export directory.<\/li>\n<\/ul>\n<p>We have run the following commands to mount the NFS shares:<\/p>\n<pre>$ sudo mount 192.168.72.170:\/var\/nfs-share \/media\/nfs-share<\/pre>\n<pre>$ sudo mount 192.168.72.170:\/var\/nfs-share1 \/media\/nfs-share1<\/pre>\n<p>The above commands mount the shares from:<\/p>\n<ul>\n<li><strong>\/var\/nfs-share<\/strong> directory on the NFS server (192.168.72.170) to the client\u2019s local mount point \/<strong>media\/nfs-share<\/strong><\/li>\n<li><strong>\/var\/nfs-share1<\/strong> directory on the NFS server (192.168.72.170) to the client\u2019s local mount point <strong>\/media\/nfs-share1<\/strong>.<\/li>\n<\/ul>\n<p><img loading=\"lazy\" decoding=\"async\" width=\"807\" height=\"61\" class=\"wp-image-3047\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2020\/12\/word-image-496.png\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2020\/12\/word-image-496.png 807w, https:\/\/linuxways.net\/wp-content\/uploads\/2020\/12\/word-image-496-300x23.png 300w, https:\/\/linuxways.net\/wp-content\/uploads\/2020\/12\/word-image-496-768x58.png 768w\" sizes=\"auto, (max-width: 807px) 100vw, 807px\" \/><\/p>\n<p>Now run this command to verify if the mounting has been successful:<\/p>\n<pre>$ df -h<\/pre>\n<p>The output of the df command is as follows which shows the NFS mounts at the bottom.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" width=\"734\" height=\"287\" class=\"wp-image-3048\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2020\/12\/word-image-497.png\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2020\/12\/word-image-497.png 734w, https:\/\/linuxways.net\/wp-content\/uploads\/2020\/12\/word-image-497-300x117.png 300w\" sizes=\"auto, (max-width: 734px) 100vw, 734px\" \/><\/p>\n<p>Using the below command, you can also determine how much space is actually used by each mount point.<\/p>\n<pre>$ du -sh &lt;mount_point_name&gt;<\/pre>\n<p><img loading=\"lazy\" decoding=\"async\" width=\"497\" height=\"108\" class=\"wp-image-3049\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2020\/12\/word-image-498.png\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2020\/12\/word-image-498.png 497w, https:\/\/linuxways.net\/wp-content\/uploads\/2020\/12\/word-image-498-300x65.png 300w\" sizes=\"auto, (max-width: 497px) 100vw, 497px\" \/><\/p>\n<p>As we have created the mount points under the <strong>\/media<\/strong> directory, the system will create one link to that mount point in the left panel of File Manager. Therefore, you can access the shared directories from your File Manager.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" width=\"794\" height=\"441\" class=\"wp-image-3050\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2020\/12\/word-image-499.png\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2020\/12\/word-image-499.png 794w, https:\/\/linuxways.net\/wp-content\/uploads\/2020\/12\/word-image-499-300x167.png 300w, https:\/\/linuxways.net\/wp-content\/uploads\/2020\/12\/word-image-499-768x427.png 768w\" sizes=\"auto, (max-width: 794px) 100vw, 794px\" \/><\/p>\n<p>You will also find one link to mount point on the Desktop.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" width=\"843\" height=\"499\" class=\"wp-image-3051\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2020\/12\/word-image-500.png\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2020\/12\/word-image-500.png 843w, https:\/\/linuxways.net\/wp-content\/uploads\/2020\/12\/word-image-500-300x178.png 300w, https:\/\/linuxways.net\/wp-content\/uploads\/2020\/12\/word-image-500-768x455.png 768w\" sizes=\"auto, (max-width: 843px) 100vw, 843px\" \/><\/p>\n<h3>Step 4: Mount the NFS shares at startup (automatically)<\/h3>\n<p>In the previous step, we have seen how to mount the NFS shares on the client manually. But when you restart the system, they get unmounted. Therefore, after restarting the system, you will have to again mount it. To avoid this manual procedure, again and again, you can make the mount permanent on your system by configuring it in the <strong>\/etc\/fstab<\/strong> file. This configuration will make the NFS shares to automatically mount at startup.<\/p>\n<p>Open the <strong>\/etc\/fstab<\/strong> file using the Nano editor as follows:<\/p>\n<pre>$ sudo nano \/etc\/fstab<\/pre>\n<p>In the file, add entries for your shares that you want to mount at startup:<\/p>\n<pre>192.168.72.170:\/var\/nfs-share \/media\/nfs-share nfs rw,sync,hard,intr 0 0<\/pre>\n<pre>192.168.72.170:\/var\/nfs-share1 \/media\/nfs-share1 nfs rw,sync,hard,intr 0 0<\/pre>\n<p>Then save and close the file.<\/p>\n<p>Now after every restart, the NFS shares will be automatically mounted at their specified mount points.<\/p>\n<h2>Step 5: Test NFS Access<\/h2>\n<p>To test the NFS access, create a new file in each shared directory in your client machine. First, create a <strong>sample.txt<\/strong> file as sudo in the <strong>\/media\/nfs-share<\/strong>:<\/p>\n<pre>$ sudo touch \/media\/<strong>nfs-share\/sample.txt<\/strong><\/pre>\n<p>Then create a second file <strong>sample1.txt<\/strong> as sudo in the <strong>\/media\/nfs-share1:<\/strong><\/p>\n<pre>$ sudo touch \/media\/<strong>nfs-share\/sample1.txt<\/strong><\/pre>\n<p>Now check the ownership of both files:<\/p>\n<pre>$ ls -l \/media\/<strong>nfs-share\/sample.txt<\/strong><\/pre>\n<pre>$ ls -l \/media\/<strong>nfs-share1\/sample1.txt<\/strong><\/pre>\n<p><strong><img loading=\"lazy\" decoding=\"async\" width=\"719\" height=\"131\" class=\"wp-image-3052\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2020\/12\/word-image-501.png\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2020\/12\/word-image-501.png 719w, https:\/\/linuxways.net\/wp-content\/uploads\/2020\/12\/word-image-501-300x55.png 300w\" sizes=\"auto, (max-width: 719px) 100vw, 719px\" \/><\/strong><\/p>\n<p>You will see the ownership of the <strong>sample.txt <\/strong>file is <strong>nobody<\/strong> user and <strong>nogroup<\/strong> group. Even though this file was created as sudo but the NFS server has now translated its ownership to the server\u2019s <strong>nobody:nogroup. This shows the root user on the NFS client cannot carry the administrative jobs on the NFS share.<\/strong><\/p>\n<p>The ownership of the other file <strong>sample1.txt<\/strong> is owned by the <strong>root<\/strong> user and <strong>root<\/strong> group. It is due to the <strong>no_root_squash<\/strong> option that we configured in the <strong>\/etc\/exports <\/strong>file. It enables the root user on the NFS client to function as root and performs administrative jobs.<\/p>\n<p>Now, also check if you can access both files from the NFS server.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" width=\"627\" height=\"177\" class=\"wp-image-3053\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2020\/12\/word-image-502.png\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2020\/12\/word-image-502.png 627w, https:\/\/linuxways.net\/wp-content\/uploads\/2020\/12\/word-image-502-300x85.png 300w\" sizes=\"auto, (max-width: 627px) 100vw, 627px\" \/><\/p>\n<h2>Unmount NFS Share<\/h2>\n<p>In case, you no longer want the NFS shares, you can easily unmount them from your machine. To unmount the NFS shares, use the following syntax:<\/p>\n<pre>$ umount &lt;mount_point_name&gt;<\/pre>\n<p>In our example, it would be:<\/p>\n<pre>$ umount \/media\/nfs-share<\/pre>\n<pre>$ umount \/media\/nfs-share1<\/pre>\n<p>This is how you can setup the NFS server and client on Mint. In this post, you have learned how to install the NFS server and client, configure and share NFS export directories, and mount\/unmount the NFS shares on the client.<\/p>","protected":false},"excerpt":{"rendered":"<p>NFS (Network File System) works in the form of a client-server model where the machine sharing the directories is known as the NFS server whereas the machine accessing&hellip;<\/p>","protected":false},"author":4,"featured_media":3055,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[5],"tags":[129,90],"class_list":["post-3038","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-mint","tag-linux-mint-20","tag-nfs-server"],"_links":{"self":[{"href":"https:\/\/linuxways.net\/de\/wp-json\/wp\/v2\/posts\/3038","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/linuxways.net\/de\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/linuxways.net\/de\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/linuxways.net\/de\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/linuxways.net\/de\/wp-json\/wp\/v2\/comments?post=3038"}],"version-history":[{"count":0,"href":"https:\/\/linuxways.net\/de\/wp-json\/wp\/v2\/posts\/3038\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/linuxways.net\/de\/wp-json\/wp\/v2\/media\/3055"}],"wp:attachment":[{"href":"https:\/\/linuxways.net\/de\/wp-json\/wp\/v2\/media?parent=3038"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/linuxways.net\/de\/wp-json\/wp\/v2\/categories?post=3038"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/linuxways.net\/de\/wp-json\/wp\/v2\/tags?post=3038"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}