{"id":12423,"date":"2014-07-13T23:55:42","date_gmt":"2014-07-13T14:55:42","guid":{"rendered":"http:\/\/oichinote.com\/plus\/?p=12423"},"modified":"2016-06-04T10:41:10","modified_gmt":"2016-06-04T01:41:10","slug":"installing-debianized-netatalk-3-1-3-on-ubuntu-14-04","status":"publish","type":"post","link":"https:\/\/oichinote.com\/plus\/2014\/07\/installing-debianized-netatalk-3-1-3-on-ubuntu-14-04.html","title":{"rendered":"Installing Debianized Netatalk 3.1.3 on Ubuntu 14.04[Edited]"},"content":{"rendered":"<p>One year ago, I&#8217;ve installed netatalk 3.0 with a debian style.<\/p>\n<ul>\n<li><a href=\"https:\/\/oichinote.com\/plus\/2012\/07\/installing-debianized-netatalk-3-0-on-ubuntu-10-04-in-english.html\" rel=\"_RAclick\">Installing Debianized Netatalk 3.0 on Ubuntu 10.04 [edited] : \u30d7\u30e9\u30b9\u03b1\u7a7a\u9593<\/a> <em>(2012\u5e747\u670811\u65e5)<\/em><\/li>\n<\/ul>\n<p>&#8220;debianize&#8221; means to create a deb package from a released software. It called by me. :)<\/p>\n<p>I&#8217;ve known the patch does not work on netatalk 3.1.3 from its comment by babo, so I&#8217;ve try to install netatalk 3.1.3 with debian style. It seems work well.<\/p>\n<p>I&#8217;m not a debian maintainer, so the below is an ad hoc way to use dpkg.<\/p>\n<p>I want to say thanks to original packagers.<\/p>\n<p>Then, this installing way is based on the below page.<\/p>\n<ul>\n<li><a href=\"http:\/\/netatalk.sourceforge.net\/wiki\/index.php\/Install_Netatalk_3.1.3_on_Ubuntu_14.04_Trusty\" target=\"_blank\">Install Netatalk 3.1.3 on Ubuntu 14.04 Trusty &#8211; Netatalk Wiki<\/a><\/li>\n<\/ul>\n<p>Thank you very much.<\/p>\n<p>I&#8217;ll describe how to install netatalk 3.1.3 on Ubuntu 14.04 as below steps.<\/p>\n<ol>\n<li>Install required package to make a debian package<\/li>\n<li>Prepare build<\/li>\n<li>Install required package to build netatalk<\/li>\n<li>Build a deb<\/li>\n<li>Install the deb<\/li>\n<li>Setup netatalk (afp.conf)<\/li>\n<li>Start netatalk service<\/li>\n<li>Confirm netatalk<\/li>\n<\/ol>\n<p>If you have any questions, please feel free to ask me.<\/p>\n<h3>1. Install required package to make a debian package<\/h3>\n<p>Install required packages to make a debian package.<\/p>\n<pre>$ sudo apt-get install build-essential dpkg-dev fakeroot dh-make\r\n<\/pre>\n<h3>2. Prepare build<\/h3>\n<p>Extract netatalk 3.1.3 and the original debian package for 2.2.2.<\/p>\n<pre>$ tar xvf netatalk-3.1.3.tar.bz2 \r\n$ tar xvf netatalk_2.2.2-1ubuntu2.debian.tar.gz \r\n<\/pre>\n<p>You can get netatalk 3.1.3 and netatalk 2.2.2 debian from below websites.<\/p>\n<ul>\n<li><a href=\"http:\/\/netatalk.sourceforge.net\/\" target=\"_blank\">Netatalk &#8211; Networking Apple Macintosh through Open Source<\/a><\/li>\n<li><a href=\"https:\/\/launchpad.net\/ubuntu\/+source\/netatalk\" target=\"_blank\">\u201cnetatalk\u201d package : Ubuntu<\/a><\/li>\n<\/ul>\n<p>(Edited 2014-07-19 10:54 Or, you can get the original netalk 2.2.2 source package by apt-get.<\/p>\n<pre>$ apt-get source netatalk\r\n$ ls\r\nnetatalk-2.2.2  netatalk_2.2.2-1ubuntu2.debian.tar.gz  netatalk_2.2.2-1ubuntu2.dsc  netatalk_2.2.2.orig.tar.gz\r\n<\/pre>\n<p>Please use the &#8220;netatalk_2.2.2-1ubuntu2.debian.tar.gz&#8221;.<\/p>\n<p>)<\/p>\n<p>Next, make a debian environment by dh_make.<\/p>\n<pre>$ ls\r\ndebian  netatalk-3.1.3  netatalk-3.1.3.tar.bz2  netatalk_2.2.2-1ubuntu2.debian.tar.gz\r\n$ cd netatalk-3.1.3\/\r\n$ dh_make --createorig --single\r\nMaintainer name  : oichi\r\nEmail-Address    : oichi@example.com \r\nDate             : Sun, 13 Jul 2014 11:10:16 +0900\r\nPackage Name     : netatalk\r\nVersion          : 3.1.3\r\nLicense          : blank\r\nType of Package  : Single\r\nHit  to confirm: \r\nDone. Please edit the files in the debian\/ subdirectory now. netatalk\r\nuses a configure script, so you probably don't have to edit the Makefiles.\r\n<\/pre>\n<p>Copy the original &#8220;rules&#8221; and &#8220;control&#8221; from 2.2.2 package.<\/p>\n<pre>$ cp -p ..\/debian\/rules debian\/rules \r\n$ cp -p ..\/debian\/control debian\/control \r\n<\/pre>\n<p>At first, you have to modify debian\/rules.<\/p>\n<pre class=\"hljs\"><code> 040|DEB_CONFIGURE_EXTRA_FLAGS := \\\r\n 041|        --with-init-style=debian \\\r\n 042|        --with-cracklib \\\r\n 043|        --enable-krbV-uam \\\r\n 044|        --with-pam-confdir=\/etc\/pam.d \\\r\n 045|        --with-dbus-sysconf-dir=\/etc\/dbus-1\/system.d \\\r\n 046|        --with-tracker-pkgconfig-version=0.16 \\\r\n 047|        --enable-fhs \\\r\n<\/code><\/pre>\n<p>There are a lot of changes, so you have to change the original &#8220;contorl&#8221; of 2.2.2 package. Therefore, I&#8217;ve make a patch file for debian\/rules and debian\/control. You can download it from below link. Please download it by the right click of mouse button.<\/p>\n<ul>\n<li><a href=\"https:\/\/oichinote.com\/plus\/files\/2014\/07\/debian-netatalk-3.1.3.patch\">debian-netatalk-3.1.3.patch<\/a><\/li>\n<\/ul>\n<p>Then patch with the patch file.<\/p>\n<pre>$ patch -p0 &lt; ~\/Downloads\/debian-netatalk-3.1.3.patch\r\n<\/pre>\n<p>(Edited 2014-07-19 10:54 I pasted the patched &#8220;rules&#8221; and &#8220;control&#8221; at the end of this article.)<\/p>\n<h3>3. Install required package to build netatalk<\/h3>\n<p>Then, install required packages.<\/p>\n<pre>$ sudo apt-get install cdbs devscripts debhelper dh-buildinfo libltdl3-dev d-shlibs libssl-dev libgcrypt11-dev libkrb5-dev libpam0g-dev libwrap0-dev libdb-dev libmysqlclient-dev libavahi-client-dev libacl1-dev libldap2-dev libcrack2-dev systemtap-sdt-dev libdbus-1-dev libdbus-glib-1-dev libglib2.0-dev tracker libtracker-sparql-0.16-dev libtracker-miner-0.16-dev hardening-includes\r\n<\/pre>\n<h3>4. Build a deb<\/h3>\n<p>Build the package.<\/p>\n<pre>$ dpkg-buildpackage -us -uc -rfakeroot -d\r\n<\/pre>\n<p>This step takes time for a while.<\/p>\n<p>&#8220;-us -uc&#8221; option is for <span style=\"color: #ff0000;\">no sign<\/span>, so you are <span style=\"color: #ff0000;\">prohibited to upload this package<\/span>. On the other hand, &#8220;-d&#8221; option is for ignoring dependency.<\/p>\n<h3>5. Install the deb<\/h3>\n<p>You can find &#8220;deb&#8221; file at the upper directory that is made from previous step.<\/p>\n<pre>$ cd ..\r\n$ ls\r\ndebian                  netatalk_2.2.2-1ubuntu2.debian.tar.gz  netatalk_3.1.3-1_amd64.changes\r\nnetatalk-3.1.3          netatalk_3.1.3-1.debian.tar.gz         netatalk_3.1.3-1_amd64.deb\r\nnetatalk-3.1.3.tar.bz2  netatalk_3.1.3-1.dsc                   netatalk_3.1.3.orig.tar.xz\r\n$ sudo dpkg -i netatalk_3.1.3-1_amd64.deb \r\n<\/pre>\n<p>Check installed program.<\/p>\n<pre>$ which afpd\r\n\/sbin\/afpd\r\n$ afpd -V\r\nafpd 3.1.3 - Apple Filing Protocol (AFP) daemon of Netatalk\r\n\r\nThis program is free software; you can redistribute it and\/or modify it under\r\nthe terms of the GNU General Public License as published by the Free Software\r\nFoundation; either version 2 of the License, or (at your option) any later\r\nversion. Please see the file COPYING for further information and details.\r\n\r\nafpd has been compiled with support for these features:\r\n\r\n          AFP versions:\t2.2 3.0 3.1 3.2 3.3 3.4 \r\n         CNID backends:\tdbd last tdb mysql \r\n      Zeroconf support:\tAvahi\r\n  TCP wrappers support:\tYes\r\n         Quota support:\tYes\r\n   Admin group support:\tYes\r\n    Valid shell checks:\tYes\r\n      cracklib support:\tYes\r\n            EA support:\tad | sys\r\n           ACL support:\tYes\r\n          LDAP support:\tYes\r\n         D-Bus support:\tYes\r\n     Spotlight support:\tYes\r\n         DTrace probes:\tYes\r\n\r\n              afp.conf:\t\/etc\/afp.conf\r\n           extmap.conf:\t\/etc\/extmap.conf\r\n       state directory:\t\/var\/netatalk\/\r\n    afp_signature.conf:\t\/var\/netatalk\/afp_signature.conf\r\n      afp_voluuid.conf:\t\/var\/netatalk\/afp_voluuid.conf\r\n       UAM search path:\t\/lib\/netatalk\/\r\n  Server messages path:\t\/var\/netatalk\/msg\/\r\n<\/pre>\n<h3>6. Setup netatalk (afp.conf)<\/h3>\n<p>At first, you have to stop the current service. After that you can edit the &#8220;\/etc\/afp.conf&#8221;.<\/p>\n<pre>$ sudo service netatalk stop\r\n$ sudo vi \/etc\/afp.conf\r\n<\/pre>\n<p>This is a sample to check installed netatalk is working.<\/p>\n<pre class=\"hljs\"><code class=\"ini\">[Global]\r\n    mac charset = MAC_JAPANESE\r\n\r\n[Homes]\r\n    basedir regex = \/home\r\n\r\n[Test Volume]\r\n    path = \/export\/test1\r\n\r\n[My Time Machine Volume]\r\n    path = \/export\/timemachine\r\n    time machine = yes\r\n<\/code><\/pre>\n<p>If you don&#8217;t have these directories, then you have to prepare them.<\/p>\n<pre>$ sudo mkdir -p \/export\/test1\r\n$ sudo chmod 777 \/export\/test1\/\r\n$ sudo mkdir \/export\/timemachine\r\n$ sudo chmod 777 \/export\/timemachine\/\r\n<\/pre>\n<p>This package require ACL and EA (Extended Attribute). If you have not activated them, you have to modify &#8220;\/etc\/fstab&#8221;.<\/p>\n<pre>$ vi \/etc\/fstab\r\n# \/etc\/fstab: static file system information.\r\n#\r\n# Use 'blkid' to print the universally unique identifier for a\r\n# device; this may be used with UUID= as a more robust way to name devices\r\n# that works even if disks are added and removed. See fstab(5).\r\n#\r\n#                \r\n# \/ was on \/dev\/sda1 during installation\r\nUUID=oooooooo-oooo-oooo-oooo-oooooooooooo \/               ext4    <span style=\"color: #ff0000;\">defaults,user_xattr,acl,<\/span>errors=remount-ro 0       1\r\n# swap was on \/dev\/sda5 during installation\r\nUUID=oooooooo-oooo-oooo-oooo-oooooooooooo none            swap    sw              0       0\r\n<\/pre>\n<p>After modification, then remount &#8220;\/&#8221;.<\/p>\n<pre>$ sudo mount -o remount \/\r\n<\/pre>\n<p>You will be able to use ACL and EA.<\/p>\n<h3>7. Start netatalk service<\/h3>\n<p>You can start netatalk service. Avahi-daemon is needed to find the netatalk service by Finder.<\/p>\n<pre>$ sudo service avahi-daemon start\r\n$ sudo service netatalk start\r\n<\/pre>\n<p>You will find the Ubuntu netatalk server on your Finder.<\/p>\n<h3>8. Confirm netatalk<\/h3>\n<p>I&#8217;m checking this table when I&#8217;ve installed netatalk always.<\/p>\n<table border=\"1\">\n<tbody>\n<tr>\n<th><\/th>\n<th>OS X 10.9.4<\/th>\n<\/tr>\n<tr>\n<th>Finding the server on Finder<\/th>\n<td style=\"text-align: center;\">OK<\/td>\n<\/tr>\n<tr>\n<th>Creating a folder<\/th>\n<td style=\"text-align: center;\">OK<\/td>\n<\/tr>\n<tr>\n<th>Copying a file from Mac to Ubuntu<\/th>\n<td style=\"text-align: center;\">OK<\/td>\n<\/tr>\n<tr>\n<th>Copying a file from Ubuntu to Mac<\/th>\n<td style=\"text-align: center;\">OK<\/td>\n<\/tr>\n<tr>\n<th>Permission of the copied file<\/th>\n<td style=\"text-align: center;\">OK<\/td>\n<\/tr>\n<tr>\n<th>Time stamp of the copied file<\/th>\n<td style=\"text-align: center;\">OK<\/td>\n<\/tr>\n<tr>\n<th>File extended attributes<\/th>\n<td style=\"text-align: center;\">OK<\/td>\n<\/tr>\n<tr>\n<th>Special characters such as \u201c:\u201d<\/th>\n<td style=\"text-align: center;\">OK<\/td>\n<\/tr>\n<tr>\n<th>Long file name (255 bytes)<\/th>\n<td style=\"text-align: center;\">OK<\/td>\n<\/tr>\n<tr>\n<th>Backup by TimeMachine<\/th>\n<td style=\"text-align: center;\">OK<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>It seems working well.<\/p>\n<h3>Appendix: The patched &#8220;rules&#8221; and &#8220;control&#8221;<\/h3>\n<p>This is a part of patched &#8220;rules&#8221;.<\/p>\n<pre class=\"hljs\"><code> 040|DEB_CONFIGURE_EXTRA_FLAGS := \\\r\n*041|        --with-init-style=debian \\\r\n*042|        --with-cracklib \\\r\n*043|        --enable-krbV-uam \\\r\n*044|        --with-pam-confdir=\/etc\/pam.d \\\r\n*045|        --with-dbus-sysconf-dir=\/etc\/dbus-1\/system.d \\\r\n*046|        --with-tracker-pkgconfig-version=0.16 \\\r\n*047|        --enable-fhs \\\r\n 048|\r\n*049|#DEB_INSTALL_EXAMPLES_netatalk = debian\/examples\/*\r\n<\/code><\/pre>\n<pre class=\"hljs\"><code> 077|# Rename files w\/ manpage references to avoid namespace conflicts\r\n 078|# * uniconv \u2192 netatalk-uniconv\r\n 079|# * install netatalk-uniconv as system binary\r\n 080|bindir=debian\/netatalk\/usr\/bin\r\n 081|man1dir=debian\/netatalk\/usr\/share\/man\/man1\r\n*082|binary-post-install\/netatalk::\r\n*083|#mv $(bindir)\/uniconv $(bindir)\/..\/sbin\/netatalk-uniconv\r\n*084|#perl -p -e &#039;s\/(?&gt;!Title: )(uniconv)\\\\b\/netatalk(?(1)\\\\-)$$2\/g;s\/(TH &quot;UNICONV&quot; )&quot;1&quot;\/$$1&quot;8&quot;\/&#039; &lt;$(man1dir)\/uniconv.1 &gt;$(man1dir)\/..\/man8\/netatalk-uniconv.8\r\n 086|#rm $(man1dir)\/uniconv.1\r\n<\/code><\/pre>\n<pre class=\"hljs\"><code> 092|# Remove unnecessary files\r\n*093|binary-post-install\/netatalk::\r\n*094|#rm debian\/netatalk\/usr\/bin\/netatalk-config\r\n 095|#rm debian\/netatalk\/usr\/lib\/libatalk.*\r\n 096|rm debian\/netatalk\/usr\/share\/man\/man1\/afppasswd.1\r\n 097|rm -r debian\/netatalk\/usr\/include\r\n*098|rm -r debian\/netatalk\/usr\/share\/aclocal\r\n*099|#rm -r debian\/netatalk\/var\r\n 100|#rm debian\/netatalk\/usr\/lib\/netatalk\/*.la\r\n<\/code><\/pre>\n<p>This is a part of patched &#8220;control&#8221;.<\/p>\n<pre class=\"hljs\"><code> 006|Build-Depends: autotools-dev,\r\n 007| cdbs (&gt;= 0.4.72~),\r\n 008| devscripts,\r\n 009| debhelper,\r\n 010| dh-buildinfo,\r\n*011| libltdl3-dev,\r\n*012| d-shlibs,\r\n 013| libssl-dev,\r\n*014| libgcrypt11-dev,\r\n*015| libkrb5-dev,\r\n*016| libpam0g-dev,\r\n*017| libwrap0-dev,\r\n*018| libdb-dev,\r\n 019| libmysqlclient-dev,\r\n 020| libavahi-client-dev,\r\n*021| libacl1-dev,\r\n*022| libldap2-dev,\r\n*023| libcrack2-dev,\r\n*024| systemtap-sdt-dev,\r\n*025| libdbus-1-dev,\r\n*026| libdbus-glib-1-dev,\r\n*027| libglib2.0-dev,\r\n*028| tracker,\r\n*029| libtracker-sparql-0.16-dev,\r\n 030| libtracker-miner-0.16-dev,\r\n 031| hardening-includes\r\n<\/code><\/pre>\n[amazonjs asin=\"B00KKVP5ZY\" locale=\"JP\"]\n","protected":false},"excerpt":{"rendered":"<p>One year ago, I&#8217;ve installed netatalk 3.0 with a debian style. Installing Debianized Netatalk 3.0 on Ubu [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":12435,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"\u65b0\u3057\u3044\u8a18\u4e8b\u300eInstalling Debianized Netatalk 3.1.3 on Ubuntu 14.04[Edited]\u300f\u3092\u6295\u7a3f\u3057\u307e\u3057\u305f\u3002\u8aad\u3093\u3067\u3044\u305f\u3060\u3051\u308b\u3068\u5b09\u3057\u3044\u3067\u3059\u3002","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":true,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2}},"categories":[30,5],"tags":[],"class_list":["post-12423","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-netatalk","category-computer"],"jetpack_publicize_connections":[],"jetpack_featured_media_url":"https:\/\/oichinote.com\/plus\/files\/2014\/07\/20140713netatlk-erver.png","jetpack-related-posts":[{"id":3598,"url":"https:\/\/oichinote.com\/plus\/2012\/07\/installing-debianized-netatalk-3-0-on-ubuntu-10-04-in-english.html","url_meta":{"origin":12423,"position":0},"title":"Installing Debianized Netatalk 3.0 on Ubuntu 10.04 [edited]","author":"\u304a\u5e02\u306e\u304b\u305f","date":"2012\u5e747\u670811\u65e5","format":false,"excerpt":"Netatalk 3.0 has just released. Please check chang\u2026","rel":"","context":"netatalk","block_context":{"text":"netatalk","link":"https:\/\/oichinote.com\/plus\/category\/netatalk"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":2953,"url":"https:\/\/oichinote.com\/plus\/2012\/06\/installing-debianized-netatalk-3-0-beta2-on-ubuntu-10-04.html","url_meta":{"origin":12423,"position":1},"title":"Installing Debianized Netatalk 3.0 beta2 on Ubuntu 10.04[EDITED]","author":"\u304a\u5e02\u306e\u304b\u305f","date":"2012\u5e746\u67082\u65e5","format":false,"excerpt":"Netatalk 3.0beta2 has just released. I tried to in\u2026","rel":"","context":"netatalk","block_context":{"text":"netatalk","link":"https:\/\/oichinote.com\/plus\/category\/netatalk"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":2016,"url":"https:\/\/oichinote.com\/plus\/2011\/07\/how-to-install.html","url_meta":{"origin":12423,"position":2},"title":"How to install netatalk 2.2beta4 to Ubuntu 10.04 by dpkg","author":"\u304a\u5e02\u306e\u304b\u305f","date":"2011\u5e747\u670813\u65e5","format":false,"excerpt":"netatalk 2.2beta4 has released, and a deb package \u2026","rel":"","context":"netatalk","block_context":{"text":"netatalk","link":"https:\/\/oichinote.com\/plus\/category\/netatalk"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":12463,"url":"https:\/\/oichinote.com\/plus\/2014\/07\/installing-debianized-netatalk-3-1-3-on-ubuntu-14-04-jp.html","url_meta":{"origin":12423,"position":3},"title":"netatalk 3.1.3\u3092debian\u5316\u3057\u3066Ubuntu 14.04\u306bdpkg\u3067\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb[\u8ffd\u8a18\u3042\u308a]","author":"\u304a\u5e02\u306e\u304b\u305f","date":"2014\u5e747\u670815\u65e5","format":false,"excerpt":"\u4e00\u5e74\u524d\u3001netatalk 3.0\u306e\u30d7\u30e9\u30a4\u30d9\u30fc\u30c8debian\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u4f5c\u3063\u3066\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u3066\u3044\u307e\u3059\u3002\u2026","rel":"","context":"netatalk","block_context":{"text":"netatalk","link":"https:\/\/oichinote.com\/plus\/category\/netatalk"},"img":{"alt_text":"Netatlk server on Ubuntu","src":"https:\/\/i0.wp.com\/oichinote.com\/plus\/files\/2014\/07\/20140713netatlk-erver.png?resize=350%2C200&ssl=1","width":350,"height":200},"classes":[]},{"id":3578,"url":"https:\/\/oichinote.com\/plus\/2012\/07\/installing-debianized-netatalk-3-0-on-ubuntu-10-04.html","url_meta":{"origin":12423,"position":4},"title":"Netatalk 3.0\u3092debian\u5316\u3057\u3066Ubuntu 10.04\u306bdpkg\u3067\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb[\u8ffd\u8a18\u3042\u308a]","author":"\u304a\u5e02\u306e\u304b\u305f","date":"2012\u5e747\u67089\u65e5","format":false,"excerpt":"Netatalk 3.0\u304c\u30ea\u30ea\u30fc\u30b9\u3055\u308c\u307e\u3057\u305f\u3002 Netatalk 2.x\u304b\u3089\u306e\u5909\u66f4\u70b9\u306f\u3001\u6b21\u306eweb\u30da\u2026","rel":"","context":"netatalk","block_context":{"text":"netatalk","link":"https:\/\/oichinote.com\/plus\/category\/netatalk"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":12414,"url":"https:\/\/oichinote.com\/plus\/2014\/07\/install-netatalk-3-1-3-on-ubuntu-14-04.html","url_meta":{"origin":12423,"position":5},"title":"Ubuntu 14.04\u306bnetatalk 3.1.3\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb","author":"\u304a\u5e02\u306e\u304b\u305f","date":"2014\u5e747\u670812\u65e5","format":false,"excerpt":"\u6614\u66f8\u3044\u305f\u8a18\u4e8b\u306b\u30b3\u30e1\u30f3\u30c8\u304c\u4ed8\u3044\u3066\u3044\u307e\u3057\u305f\u3002 Installing Debianized Netatal\u2026","rel":"","context":"Mac","block_context":{"text":"Mac","link":"https:\/\/oichinote.com\/plus\/category\/mac"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]}],"jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/oichinote.com\/plus\/wp-json\/wp\/v2\/posts\/12423","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/oichinote.com\/plus\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/oichinote.com\/plus\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/oichinote.com\/plus\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/oichinote.com\/plus\/wp-json\/wp\/v2\/comments?post=12423"}],"version-history":[{"count":31,"href":"https:\/\/oichinote.com\/plus\/wp-json\/wp\/v2\/posts\/12423\/revisions"}],"predecessor-version":[{"id":17944,"href":"https:\/\/oichinote.com\/plus\/wp-json\/wp\/v2\/posts\/12423\/revisions\/17944"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/oichinote.com\/plus\/wp-json\/wp\/v2\/media\/12435"}],"wp:attachment":[{"href":"https:\/\/oichinote.com\/plus\/wp-json\/wp\/v2\/media?parent=12423"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/oichinote.com\/plus\/wp-json\/wp\/v2\/categories?post=12423"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/oichinote.com\/plus\/wp-json\/wp\/v2\/tags?post=12423"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}