{"id":5914,"date":"2023-01-05T09:04:23","date_gmt":"2023-01-05T15:04:23","guid":{"rendered":"https:\/\/www.logikalsolutions.com\/wordpress\/?p=5914"},"modified":"2025-10-10T08:46:02","modified_gmt":"2025-10-10T13:46:02","slug":"personal-bin-directory","status":"publish","type":"post","link":"https:\/\/www.logikalsolutions.com\/wordpress\/information-technology\/personal-bin-directory\/","title":{"rendered":"Your Personal Bin Directory"},"content":{"rendered":"\n<p>My personal Linux pet peeve is the complete anarchy around a user&#8217;s personal bin directory. I have to use and test on many different Linux distros so this annoys me more than most. Some people start with one major Linux distro and they stick with it all their lives. They don&#8217;t even change desktops. When you are writing software you can tell people &#8220;well it works on <em>my<\/em> system!&#8221; Well, you can, but that is the battle cry of an AGILE hack, not a professional. Nothing screams to the world &#8220;I didn&#8217;t get a degree&#8221; like that comeback.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Save This to a Text File<\/h2>\n\n\n\n<p>Or just bookmark this post.<\/p>\n\n\n\n<div class=\"wp-block-kevinbatdorf-code-block-pro\" data-code-block-pro-font-family=\"Code-Pro-JetBrains-Mono\" style=\"font-size:.875rem;font-family:Code-Pro-JetBrains-Mono,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;line-height:1.25rem;--cbp-tab-width:2;tab-size:var(--cbp-tab-width, 2)\"><span style=\"display:block;padding:16px 0 0 16px;margin-bottom:-1px;width:100%;text-align:left;background-color:#0F111A\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"54\" height=\"14\" viewBox=\"0 0 54 14\"><g fill=\"none\" fill-rule=\"evenodd\" transform=\"translate(1 1)\"><circle cx=\"6\" cy=\"6\" r=\"6\" fill=\"#FF5F56\" stroke=\"#E0443E\" stroke-width=\".5\"><\/circle><circle cx=\"26\" cy=\"6\" r=\"6\" fill=\"#FFBD2E\" stroke=\"#DEA123\" stroke-width=\".5\"><\/circle><circle cx=\"46\" cy=\"6\" r=\"6\" fill=\"#27C93F\" stroke=\"#1AAB29\" stroke-width=\".5\"><\/circle><\/g><\/svg><\/span><span role=\"button\" tabindex=\"0\" style=\"color:#babed8;display:none\" aria-label=\"Copy\" class=\"code-block-pro-copy-button\"><pre class=\"code-block-pro-copy-button-pre\" aria-hidden=\"true\"><textarea class=\"code-block-pro-copy-button-textarea\" tabindex=\"-1\" aria-hidden=\"true\" readonly>\nif &#91; -d \"$HOME\/bin\" &#93;; then\n   export PATH=\"$HOME\/bin\":$PATH\n   echo \"added to PATH\"\nfi\n<\/textarea><\/pre><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" style=\"width:24px;height:24px\" fill=\"none\" viewBox=\"0 0 24 24\" stroke=\"currentColor\" stroke-width=\"2\"><path class=\"with-check\" stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4\"><\/path><path class=\"without-check\" stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2\"><\/path><\/svg><\/span><pre class=\"shiki material-theme-ocean\" style=\"background-color: #0F111A\" tabindex=\"0\"><code><span class=\"line\"><\/span>\n<span class=\"line\"><span style=\"color: #89DDFF; font-style: italic\">if<\/span><span style=\"color: #BABED8\"> <\/span><span style=\"color: #89DDFF\">&#91;<\/span><span style=\"color: #BABED8\"> <\/span><span style=\"color: #89DDFF\">-d<\/span><span style=\"color: #BABED8\"> <\/span><span style=\"color: #89DDFF\">&quot;<\/span><span style=\"color: #BABED8\">$HOME<\/span><span style=\"color: #C3E88D\">\/bin<\/span><span style=\"color: #89DDFF\">&quot;<\/span><span style=\"color: #BABED8\"> <\/span><span style=\"color: #89DDFF\">&#93;;<\/span><span style=\"color: #BABED8\"> <\/span><span style=\"color: #89DDFF; font-style: italic\">then<\/span><\/span>\n<span class=\"line\"><span style=\"color: #BABED8\">   <\/span><span style=\"color: #C792EA\">export<\/span><span style=\"color: #BABED8\"> PATH<\/span><span style=\"color: #89DDFF\">=<\/span><span style=\"color: #89DDFF\">&quot;<\/span><span style=\"color: #BABED8\">$HOME<\/span><span style=\"color: #C3E88D\">\/bin<\/span><span style=\"color: #89DDFF\">&quot;<\/span><span style=\"color: #C3E88D\">:<\/span><span style=\"color: #BABED8\">$PATH<\/span><\/span>\n<span class=\"line\"><span style=\"color: #BABED8\">   <\/span><span style=\"color: #82AAFF\">echo<\/span><span style=\"color: #BABED8\"> <\/span><span style=\"color: #89DDFF\">&quot;<\/span><span style=\"color: #C3E88D\">added to PATH<\/span><span style=\"color: #89DDFF\">&quot;<\/span><\/span>\n<span class=\"line\"><span style=\"color: #89DDFF; font-style: italic\">fi<\/span><\/span>\n<span class=\"line\"><\/span><\/code><\/pre><\/div>\n\n\n\n<p>Yes, this is another of my &#8220;I&#8217;m tired of having to find\/create it each and every time posts. The YABUs (Yet Another uBUntu) and I suspect all Debian distros include something similar in the default login scripts. If $HOME\/bin exists, it is added to the front of the PATH variable.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Where to put it<\/h2>\n\n\n\n<p>Yes, there is an obvious crude joke to be uttered there, please get it out of your system. <\/p>\n\n\n\n<p>Ubuntu and the YABU clan have tried to solve this problem since at least 18.04 LTS.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><img decoding=\"async\" width=\"539\" height=\"193\" src=\"https:\/\/www.logikalsolutions.com\/wordpress\/wp-content\/uploads\/2023\/01\/dot-profile-bin.png\" alt=\"\" class=\"wp-image-5915\" srcset=\"https:\/\/www.logikalsolutions.com\/wordpress\/wp-content\/uploads\/2023\/01\/dot-profile-bin.png 539w, https:\/\/www.logikalsolutions.com\/wordpress\/wp-content\/uploads\/2023\/01\/dot-profile-bin-300x107.png 300w\" sizes=\"(max-width: 539px) 100vw, 539px\" \/><figcaption class=\"wp-element-caption\">Already in .profile<\/figcaption><\/figure>\n<\/div>\n\n\n<p>They already look for both major locations with the .profile file found in your home directory. This file is executed as part of your login.  For Manjaro and other Arch Linux based distros you need to paste this in the top of .bashrc found in your home directory. Yes, they have a .profile, but pasting the code there will not fix the PATH.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><img decoding=\"async\" width=\"423\" height=\"95\" src=\"https:\/\/www.logikalsolutions.com\/wordpress\/wp-content\/uploads\/2023\/01\/manjaro-dot-profile.png\" alt=\"\" class=\"wp-image-5916\" srcset=\"https:\/\/www.logikalsolutions.com\/wordpress\/wp-content\/uploads\/2023\/01\/manjaro-dot-profile.png 423w, https:\/\/www.logikalsolutions.com\/wordpress\/wp-content\/uploads\/2023\/01\/manjaro-dot-profile-300x67.png 300w\" sizes=\"(max-width: 423px) 100vw, 423px\" \/><\/figure>\n<\/div>\n\n\n<p>I&#8217;m not even certain where\/if that gets executed by the login process.<\/p>\n\n\n\n<p>When you use the more obscure Linux distros all bets are off. I don&#8217;t remember what one it was, but I seem to remember one distro not only had a non-common logon script name, it the personal bin directory was $HOME\/.bin.<\/p>\n\n\n\n<p>Like I said, anarchy.<\/p>\n\n\n\n<p>For CachyOS and other fish shell Linux variants you have to edit ~\/.config\/fish\/config.fish and add<\/p>\n\n\n\n<div class=\"wp-block-kevinbatdorf-code-block-pro cbp-has-line-numbers\" data-code-block-pro-font-family=\"Code-Pro-Deja-Vu-Mono.ttf\" style=\"font-size:.875rem;font-family:Code-Pro-Deja-Vu-Mono,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;--cbp-line-number-color:#b392f0;--cbp-line-number-width:calc(1 * 0.6 * .875rem);line-height:1.25rem;--cbp-tab-width:2;tab-size:var(--cbp-tab-width, 2)\"><span style=\"display:block;padding:16px 0 0 16px;margin-bottom:-1px;width:100%;text-align:left;background-color:#1f1f1f\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"54\" height=\"14\" viewBox=\"0 0 54 14\"><g fill=\"none\" fill-rule=\"evenodd\" transform=\"translate(1 1)\"><circle cx=\"6\" cy=\"6\" r=\"6\" fill=\"#FF5F56\" stroke=\"#E0443E\" stroke-width=\".5\"><\/circle><circle cx=\"26\" cy=\"6\" r=\"6\" fill=\"#FFBD2E\" stroke=\"#DEA123\" stroke-width=\".5\"><\/circle><circle cx=\"46\" cy=\"6\" r=\"6\" fill=\"#27C93F\" stroke=\"#1AAB29\" stroke-width=\".5\"><\/circle><\/g><\/svg><\/span><span role=\"button\" tabindex=\"0\" style=\"color:#b392f0;display:none\" aria-label=\"Copy\" class=\"code-block-pro-copy-button\"><pre class=\"code-block-pro-copy-button-pre\" aria-hidden=\"true\"><textarea class=\"code-block-pro-copy-button-textarea\" tabindex=\"-1\" aria-hidden=\"true\" readonly>\nif test -d \"$HOME\/bin\"\n    fish_add_path \"$HOME\/bin\"\nend\n<\/textarea><\/pre><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" style=\"width:24px;height:24px\" fill=\"none\" viewBox=\"0 0 24 24\" stroke=\"currentColor\" stroke-width=\"2\"><path class=\"with-check\" stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4\"><\/path><path class=\"without-check\" stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2\"><\/path><\/svg><\/span><pre class=\"shiki min-dark\" style=\"background-color: #1f1f1f\" tabindex=\"0\"><code><span class=\"line\"><\/span>\n<span class=\"line\"><span style=\"color: #F97583\">if<\/span><span style=\"color: #B392F0\"> test -d <\/span><span style=\"color: #FFAB70\">&quot;$HOME\/bin&quot;<\/span><\/span>\n<span class=\"line\"><span style=\"color: #B392F0\">    fish_add_path <\/span><span style=\"color: #FFAB70\">&quot;$HOME\/bin&quot;<\/span><\/span>\n<span class=\"line\"><span style=\"color: #F97583\">end<\/span><\/span>\n<span class=\"line\"><\/span><\/code><\/pre><\/div>\n\n\n\n<p>Nothing like consistency!<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Why this matters.<\/h2>\n\n\n\n<p>You may be too young to remember, but there was a time Linux came in boxes of floppy disks. Later it was boxes with manuals and CDs. We used to have to use LILO (later replaced by Grub) and, thanks to Microsoft, the FAT\/MBR partition table could have only 4 primary partitions. Once &#8220;extended&#8221; partition support was begrudgingly added, the Linux world made certain it could boot from an extended partition. The BIOS would only boot a primary partition marked Active, but LILO\/Grub could be stuffed into the MBR and pointed to one of our extended partitions.<\/p>\n\n\n\n<p>Microsoft went to great pains to keep Linux and other operating systems off commercial computers. When you bought your new computer with Windows pre-loaded <strong>all four primary partitions were used<\/strong>. One of them would be your &#8220;recovery&#8221; partition to wipe the boot partition and re-install Windows. Another was a &#8220;tools&#8221; or &#8220;utilities&#8221; partition, and I forget what the third was. <\/p>\n\n\n\n<p>Creation of extended partitions required one primary partition. You were screwed. To use Linux, you had to &#8220;take the plunge&#8221; and get rid of something.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">We didn&#8217;t have virtual machines<\/h3>\n\n\n\n<p>Things like Oracle Virtual Box didn&#8217;t come around for a very long time. Computers were expensive and slow. An 80 MEG disk drive was considered massive. Depending on what OS you were running, you had to partition it as four 20 MEG drives (I kid you not). Backing up to a Colorado Jumbo 250 was slow. You were a serious geek if you had one of those!<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large\"><img decoding=\"async\" src=\"https:\/\/i.ebayimg.com\/images\/g\/XHgAAOSwkG1gMKVk\/s-l1600.jpg\" alt=\"\"\/><\/figure>\n<\/div>\n\n\n<p>The practice of creating one common \/home user partition came about. This meant you didn&#8217;t have to continually copy your personal scripts and binaries to each and every booted OS.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">SuSE was a bitch!<\/h3>\n\n\n\n<p><a href=\"https:\/\/www.suse.com\" target=\"_blank\" rel=\"noreferrer noopener\">SuSE<\/a> was a Linux distro that made it a personal mission in life to not play well with others. I&#8217;ve <a href=\"https:\/\/www.logikalsolutions.com\/wordpress\/information-technology\/opensuse-when-home-isnt-home-anymore\/\" target=\"_blank\" rel=\"noreferrer noopener\">written about SuSE and \/home before<\/a>. Most of you take this for granted.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><img decoding=\"async\" width=\"515\" height=\"62\" src=\"https:\/\/www.logikalsolutions.com\/wordpress\/wp-content\/uploads\/2023\/01\/user-and-group-id.png\" alt=\"\" class=\"wp-image-5917\" srcset=\"https:\/\/www.logikalsolutions.com\/wordpress\/wp-content\/uploads\/2023\/01\/user-and-group-id.png 515w, https:\/\/www.logikalsolutions.com\/wordpress\/wp-content\/uploads\/2023\/01\/user-and-group-id-300x36.png 300w\" sizes=\"(max-width: 515px) 100vw, 515px\" \/><figcaption class=\"wp-element-caption\">UID=1000 and GID=1000<\/figcaption><\/figure>\n<\/div>\n\n\n<p>For the vast majority of Linux desktop distros, the first UID created is 1000 and its associated GID is 1000. You will notice my VM of Ubuntu 18.04 shows developer for the UID and roland for the GID. In large part because I copy stuff back and forth <em>and<\/em> because my full username did not match the username I chose to create. SuSE did not abide this convention. I do not remember if they used 100:100 or 200:200 or 2000:2000. What I remember is that it did not match. When you tried to share your \/home partition this caused no end of grief. So much grief that SuSE quickly fell out of favor with desktop Linux users.<\/p>\n\n\n\n<p>The RPM crowd was eventually beaten into submission.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Today we have VMs __and__ this issue<\/h3>\n\n\n\n<p>Yes, we have multi-Terabyte disks for under $100. Yes we have multiple virtual machine packages. No, for the most part distros don&#8217;t choose anything other than 1000:1000 for the first user. Yes, we still have the personal bin directory problem.<\/p>\n\n\n\n<p>Why?<\/p>\n\n\n\n<p>Because we zip\/copy \/home\/username off to some NAS or external\/shared media, spin up a new VM, mount said media and copy \/home\/username to a shiny new VM. Okay, we don&#8217;t copy all of the hidden directories because that would really hose things. We don&#8217;t copy .config or .local because the OS and applications store configuration information there and it will be different for different versions.<\/p>\n\n\n\n<p>We copy all of the readily visible stuff. The safe stuff. Our \/home\/username\/bin directory.<\/p>\n\n\n\n<p>Too bad many Linux distros don&#8217;t play nice with this.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>My personal Linux pet peeve is the complete anarchy around a user&#8217;s personal bin directory. I have to use and test on many different Linux distros so this annoys me more than most. Some people start with one major Linux distro and they stick with it all their lives. They don&#8217;t even change desktops. When you are writing software you can tell people &#8220;well it works on my system!&#8221; Well, you can, but that is &hellip; <a title=\"Your Personal Bin Directory\" class=\"bnm-read-more\" href=\"https:\/\/www.logikalsolutions.com\/wordpress\/information-technology\/personal-bin-directory\/\"><span class=\"screen-reader-text\">Your Personal Bin Directory<\/span>Read more<\/a><\/p>\n","protected":false},"author":2,"featured_media":5565,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[3],"tags":[1549,1919,53,1900,2114,1246],"class_list":["post-5914","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-information-technology","tag-agilesucks","tag-arch-linux","tag-linux","tag-manjaro","tag-personal-bin","tag-yabu","bnm-entry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Your Personal Bin Directory &#8211; Logikal Blog<\/title>\n<meta name=\"description\" content=\"My personal Linux pet peeve is the complete anarchy around a user&#039;s personal bin directory. I have to use and test on many . . .\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.logikalsolutions.com\/wordpress\/information-technology\/personal-bin-directory\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Your Personal Bin Directory &#8211; Logikal Blog\" \/>\n<meta property=\"og:description\" content=\"My personal Linux pet peeve is the complete anarchy around a user&#039;s personal bin directory. I have to use and test on many . . .\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.logikalsolutions.com\/wordpress\/information-technology\/personal-bin-directory\/\" \/>\n<meta property=\"og:site_name\" content=\"Logikal Blog\" \/>\n<meta property=\"article:published_time\" content=\"2023-01-05T15:04:23+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-10-10T13:46:02+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.logikalsolutions.com\/wordpress\/wp-content\/uploads\/2022\/07\/hp-elitedesk.jpeg\" \/>\n\t<meta property=\"og:image:width\" content=\"1600\" \/>\n\t<meta property=\"og:image:height\" content=\"1200\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"seasoned_geek\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"seasoned_geek\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.logikalsolutions.com\\\/wordpress\\\/information-technology\\\/personal-bin-directory\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.logikalsolutions.com\\\/wordpress\\\/information-technology\\\/personal-bin-directory\\\/\"},\"author\":{\"name\":\"seasoned_geek\",\"@id\":\"https:\\\/\\\/www.logikalsolutions.com\\\/wordpress\\\/#\\\/schema\\\/person\\\/c077f770ade13de7faaf616c3eac6842\"},\"headline\":\"Your Personal Bin Directory\",\"datePublished\":\"2023-01-05T15:04:23+00:00\",\"dateModified\":\"2025-10-10T13:46:02+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.logikalsolutions.com\\\/wordpress\\\/information-technology\\\/personal-bin-directory\\\/\"},\"wordCount\":947,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.logikalsolutions.com\\\/wordpress\\\/#\\\/schema\\\/person\\\/c077f770ade13de7faaf616c3eac6842\"},\"image\":{\"@id\":\"https:\\\/\\\/www.logikalsolutions.com\\\/wordpress\\\/information-technology\\\/personal-bin-directory\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.logikalsolutions.com\\\/wordpress\\\/wp-content\\\/uploads\\\/2022\\\/07\\\/hp-elitedesk.jpeg\",\"keywords\":[\"#AGILESucks\",\"Arch Linux\",\"Linux\",\"Manjaro\",\"personal bin\",\"YABU\"],\"articleSection\":[\"Information Technology\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.logikalsolutions.com\\\/wordpress\\\/information-technology\\\/personal-bin-directory\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.logikalsolutions.com\\\/wordpress\\\/information-technology\\\/personal-bin-directory\\\/\",\"url\":\"https:\\\/\\\/www.logikalsolutions.com\\\/wordpress\\\/information-technology\\\/personal-bin-directory\\\/\",\"name\":\"Your Personal Bin Directory &#8211; Logikal Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.logikalsolutions.com\\\/wordpress\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.logikalsolutions.com\\\/wordpress\\\/information-technology\\\/personal-bin-directory\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.logikalsolutions.com\\\/wordpress\\\/information-technology\\\/personal-bin-directory\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.logikalsolutions.com\\\/wordpress\\\/wp-content\\\/uploads\\\/2022\\\/07\\\/hp-elitedesk.jpeg\",\"datePublished\":\"2023-01-05T15:04:23+00:00\",\"dateModified\":\"2025-10-10T13:46:02+00:00\",\"description\":\"My personal Linux pet peeve is the complete anarchy around a user's personal bin directory. I have to use and test on many . . .\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.logikalsolutions.com\\\/wordpress\\\/information-technology\\\/personal-bin-directory\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.logikalsolutions.com\\\/wordpress\\\/information-technology\\\/personal-bin-directory\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.logikalsolutions.com\\\/wordpress\\\/information-technology\\\/personal-bin-directory\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.logikalsolutions.com\\\/wordpress\\\/wp-content\\\/uploads\\\/2022\\\/07\\\/hp-elitedesk.jpeg\",\"contentUrl\":\"https:\\\/\\\/www.logikalsolutions.com\\\/wordpress\\\/wp-content\\\/uploads\\\/2022\\\/07\\\/hp-elitedesk.jpeg\",\"width\":1600,\"height\":1200,\"caption\":\"HP EliteDesk\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.logikalsolutions.com\\\/wordpress\\\/information-technology\\\/personal-bin-directory\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.logikalsolutions.com\\\/wordpress\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Your Personal Bin Directory\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.logikalsolutions.com\\\/wordpress\\\/#website\",\"url\":\"https:\\\/\\\/www.logikalsolutions.com\\\/wordpress\\\/\",\"name\":\"Logikal Blog\",\"description\":\"For people with attention spans longer than a Tweet\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.logikalsolutions.com\\\/wordpress\\\/#\\\/schema\\\/person\\\/c077f770ade13de7faaf616c3eac6842\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.logikalsolutions.com\\\/wordpress\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/www.logikalsolutions.com\\\/wordpress\\\/#\\\/schema\\\/person\\\/c077f770ade13de7faaf616c3eac6842\",\"name\":\"seasoned_geek\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ae9adac14079d84b909e635d7af986fe4568053af4fd9ff8d4109298c392493e?s=96&d=mm&r=r\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ae9adac14079d84b909e635d7af986fe4568053af4fd9ff8d4109298c392493e?s=96&d=mm&r=r\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ae9adac14079d84b909e635d7af986fe4568053af4fd9ff8d4109298c392493e?s=96&d=mm&r=r\",\"caption\":\"seasoned_geek\"},\"logo\":{\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ae9adac14079d84b909e635d7af986fe4568053af4fd9ff8d4109298c392493e?s=96&d=mm&r=r\"},\"description\":\"Roland Hughes started his IT career in the early 1980s. He quickly became a consultant and president of Logikal Solutions, a software consulting firm specializing in OpenVMS application and C++\\\/Qt touchscreen\\\/embedded Linux development. Early in his career he became involved in what is now called cross platform development. Given the dearth of useful books on the subject he ventured into the world of professional author in 1995 writing the first of the \\\"Zinc It!\\\" book series for John Gordon Burke Publisher, Inc. A decade later he released a massive (nearly 800 pages) tome \\\"The Minimum You Need to Know to Be an OpenVMS Application Developer\\\" which tried to encapsulate the essential skills gained over what was nearly a 20 year career at that point. From there \\\"The Minimum You Need to Know\\\" book series was born. Three years later he wrote his first novel \\\"Infinite Exposure\\\" which got much notice from people involved in the banking and financial security worlds. Some of the attacks predicted in that book have since come to pass. While it was not originally intended to be a trilogy, it became the first book of \\\"The Earth That Was\\\" trilogy: Infinite Exposure Lesedi - The Greatest Lie Ever Told John Smith - Last Known Survivor of the Microsoft Wars When he is not consulting Roland Hughes posts about technology and sometimes politics on his blog. He also has regularly scheduled Sunday posts appearing on the Interesting Authors blog.\",\"sameAs\":[\"https:\\\/\\\/theminimumyouneedtoknow.com\"],\"url\":\"https:\\\/\\\/www.logikalsolutions.com\\\/wordpress\\\/author\\\/seasoned_geek\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Your Personal Bin Directory &#8211; Logikal Blog","description":"My personal Linux pet peeve is the complete anarchy around a user's personal bin directory. I have to use and test on many . . .","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:\/\/www.logikalsolutions.com\/wordpress\/information-technology\/personal-bin-directory\/","og_locale":"en_US","og_type":"article","og_title":"Your Personal Bin Directory &#8211; Logikal Blog","og_description":"My personal Linux pet peeve is the complete anarchy around a user's personal bin directory. I have to use and test on many . . .","og_url":"https:\/\/www.logikalsolutions.com\/wordpress\/information-technology\/personal-bin-directory\/","og_site_name":"Logikal Blog","article_published_time":"2023-01-05T15:04:23+00:00","article_modified_time":"2025-10-10T13:46:02+00:00","og_image":[{"width":1600,"height":1200,"url":"https:\/\/www.logikalsolutions.com\/wordpress\/wp-content\/uploads\/2022\/07\/hp-elitedesk.jpeg","type":"image\/jpeg"}],"author":"seasoned_geek","twitter_card":"summary_large_image","twitter_misc":{"Written by":"seasoned_geek","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.logikalsolutions.com\/wordpress\/information-technology\/personal-bin-directory\/#article","isPartOf":{"@id":"https:\/\/www.logikalsolutions.com\/wordpress\/information-technology\/personal-bin-directory\/"},"author":{"name":"seasoned_geek","@id":"https:\/\/www.logikalsolutions.com\/wordpress\/#\/schema\/person\/c077f770ade13de7faaf616c3eac6842"},"headline":"Your Personal Bin Directory","datePublished":"2023-01-05T15:04:23+00:00","dateModified":"2025-10-10T13:46:02+00:00","mainEntityOfPage":{"@id":"https:\/\/www.logikalsolutions.com\/wordpress\/information-technology\/personal-bin-directory\/"},"wordCount":947,"commentCount":0,"publisher":{"@id":"https:\/\/www.logikalsolutions.com\/wordpress\/#\/schema\/person\/c077f770ade13de7faaf616c3eac6842"},"image":{"@id":"https:\/\/www.logikalsolutions.com\/wordpress\/information-technology\/personal-bin-directory\/#primaryimage"},"thumbnailUrl":"https:\/\/www.logikalsolutions.com\/wordpress\/wp-content\/uploads\/2022\/07\/hp-elitedesk.jpeg","keywords":["#AGILESucks","Arch Linux","Linux","Manjaro","personal bin","YABU"],"articleSection":["Information Technology"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.logikalsolutions.com\/wordpress\/information-technology\/personal-bin-directory\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.logikalsolutions.com\/wordpress\/information-technology\/personal-bin-directory\/","url":"https:\/\/www.logikalsolutions.com\/wordpress\/information-technology\/personal-bin-directory\/","name":"Your Personal Bin Directory &#8211; Logikal Blog","isPartOf":{"@id":"https:\/\/www.logikalsolutions.com\/wordpress\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.logikalsolutions.com\/wordpress\/information-technology\/personal-bin-directory\/#primaryimage"},"image":{"@id":"https:\/\/www.logikalsolutions.com\/wordpress\/information-technology\/personal-bin-directory\/#primaryimage"},"thumbnailUrl":"https:\/\/www.logikalsolutions.com\/wordpress\/wp-content\/uploads\/2022\/07\/hp-elitedesk.jpeg","datePublished":"2023-01-05T15:04:23+00:00","dateModified":"2025-10-10T13:46:02+00:00","description":"My personal Linux pet peeve is the complete anarchy around a user's personal bin directory. I have to use and test on many . . .","breadcrumb":{"@id":"https:\/\/www.logikalsolutions.com\/wordpress\/information-technology\/personal-bin-directory\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.logikalsolutions.com\/wordpress\/information-technology\/personal-bin-directory\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.logikalsolutions.com\/wordpress\/information-technology\/personal-bin-directory\/#primaryimage","url":"https:\/\/www.logikalsolutions.com\/wordpress\/wp-content\/uploads\/2022\/07\/hp-elitedesk.jpeg","contentUrl":"https:\/\/www.logikalsolutions.com\/wordpress\/wp-content\/uploads\/2022\/07\/hp-elitedesk.jpeg","width":1600,"height":1200,"caption":"HP EliteDesk"},{"@type":"BreadcrumbList","@id":"https:\/\/www.logikalsolutions.com\/wordpress\/information-technology\/personal-bin-directory\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.logikalsolutions.com\/wordpress\/"},{"@type":"ListItem","position":2,"name":"Your Personal Bin Directory"}]},{"@type":"WebSite","@id":"https:\/\/www.logikalsolutions.com\/wordpress\/#website","url":"https:\/\/www.logikalsolutions.com\/wordpress\/","name":"Logikal Blog","description":"For people with attention spans longer than a Tweet","publisher":{"@id":"https:\/\/www.logikalsolutions.com\/wordpress\/#\/schema\/person\/c077f770ade13de7faaf616c3eac6842"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.logikalsolutions.com\/wordpress\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/www.logikalsolutions.com\/wordpress\/#\/schema\/person\/c077f770ade13de7faaf616c3eac6842","name":"seasoned_geek","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/ae9adac14079d84b909e635d7af986fe4568053af4fd9ff8d4109298c392493e?s=96&d=mm&r=r","url":"https:\/\/secure.gravatar.com\/avatar\/ae9adac14079d84b909e635d7af986fe4568053af4fd9ff8d4109298c392493e?s=96&d=mm&r=r","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ae9adac14079d84b909e635d7af986fe4568053af4fd9ff8d4109298c392493e?s=96&d=mm&r=r","caption":"seasoned_geek"},"logo":{"@id":"https:\/\/secure.gravatar.com\/avatar\/ae9adac14079d84b909e635d7af986fe4568053af4fd9ff8d4109298c392493e?s=96&d=mm&r=r"},"description":"Roland Hughes started his IT career in the early 1980s. He quickly became a consultant and president of Logikal Solutions, a software consulting firm specializing in OpenVMS application and C++\/Qt touchscreen\/embedded Linux development. Early in his career he became involved in what is now called cross platform development. Given the dearth of useful books on the subject he ventured into the world of professional author in 1995 writing the first of the \"Zinc It!\" book series for John Gordon Burke Publisher, Inc. A decade later he released a massive (nearly 800 pages) tome \"The Minimum You Need to Know to Be an OpenVMS Application Developer\" which tried to encapsulate the essential skills gained over what was nearly a 20 year career at that point. From there \"The Minimum You Need to Know\" book series was born. Three years later he wrote his first novel \"Infinite Exposure\" which got much notice from people involved in the banking and financial security worlds. Some of the attacks predicted in that book have since come to pass. While it was not originally intended to be a trilogy, it became the first book of \"The Earth That Was\" trilogy: Infinite Exposure Lesedi - The Greatest Lie Ever Told John Smith - Last Known Survivor of the Microsoft Wars When he is not consulting Roland Hughes posts about technology and sometimes politics on his blog. He also has regularly scheduled Sunday posts appearing on the Interesting Authors blog.","sameAs":["https:\/\/theminimumyouneedtoknow.com"],"url":"https:\/\/www.logikalsolutions.com\/wordpress\/author\/seasoned_geek\/"}]}},"_links":{"self":[{"href":"https:\/\/www.logikalsolutions.com\/wordpress\/wp-json\/wp\/v2\/posts\/5914","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.logikalsolutions.com\/wordpress\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.logikalsolutions.com\/wordpress\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.logikalsolutions.com\/wordpress\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.logikalsolutions.com\/wordpress\/wp-json\/wp\/v2\/comments?post=5914"}],"version-history":[{"count":0,"href":"https:\/\/www.logikalsolutions.com\/wordpress\/wp-json\/wp\/v2\/posts\/5914\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.logikalsolutions.com\/wordpress\/wp-json\/wp\/v2\/media\/5565"}],"wp:attachment":[{"href":"https:\/\/www.logikalsolutions.com\/wordpress\/wp-json\/wp\/v2\/media?parent=5914"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.logikalsolutions.com\/wordpress\/wp-json\/wp\/v2\/categories?post=5914"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.logikalsolutions.com\/wordpress\/wp-json\/wp\/v2\/tags?post=5914"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}