{"id":25869,"date":"2018-03-07T03:25:42","date_gmt":"2018-03-07T09:25:42","guid":{"rendered":"https:\/\/www.rosehosting.com\/blog\/?p=25869"},"modified":"2022-12-05T06:43:43","modified_gmt":"2022-12-05T12:43:43","slug":"how-to-rename-multiple-files-on-linux","status":"publish","type":"post","link":"https:\/\/www.rosehosting.com\/blog\/how-to-rename-multiple-files-on-linux\/","title":{"rendered":"How to Rename Multiple Files on Linux"},"content":{"rendered":"
<\/div>

\"How<\/p>\n

We’ll show you, how to rename multiple files on Linux . Every operating system in the modern world comes with several ways to interact with its file system. Whether it\u2019s creating files, renaming them, copying them, or deleting them, they all come with functionality to efficiently carry out all of these tasks. However, one operation that most operating systems fall short with is renaming several files at the same time. Whether you need a pattern that the files need to follow, or if you just want to rename many files at one time, renaming files can be quite tedious.<\/p>\n

Luckily, renaming software can help us solve this issue. In this tutorial, we will go through several options for batch renaming of files on Debian-based systems, as well as RHEL-based (RedHat Enterprise Linux) systems.<\/p>\n

<\/p>\n

Debian-based Operating Systems<\/b><\/h2>\n

Debian and similar distributions such as Ubuntu and Linux Mint have a built in command line tool for batch renaming files. \u2018rename\u2019, offered on some Debian-based OSes, is one of the most powerful renaming tools on Linux. Rename works very similar to the way \u2018sed\u2019 works – it is essentially the sed utility for filenames. It can also use Perl expressions, so if you have some knowledge of Perl, this utility will work wonders for you.<\/p>\n

Important:<\/strong> Some Debian-based operating systems that have \u2018rename\u2019 installed might actually have a version of \u2018rename\u2019 from the \u2018util-linux\u2019 package. This util-linux variant is a much simpler version of \u2018rename\u2019 which doesn\u2019t have nearly as many features as the version that comes on Debian and Ubuntu.<\/p>\n

Basic File Renaming<\/h3>\n

You can find and replace text in filenames by executing the following command. Make sure to change the values of \u2018search\u2019 and \u2018replace\u2019 to the strings of text you wish to affect.\u00a0Keep in mind that wildcards are<\/strong> available\u00a0inside of the search field.\u00a0Note:\u00a0<\/strong>You can use the -n option to perform a ‘dry run’ first, which does not affect your file names. The -v option makes all operations verbose.<\/p>\n

Example:<\/strong><\/p>\n

rename -v 's\/search\/replace\/' *<\/pre>\n

Changing filetypes<\/h3>\n

You can also rename the filetype of certain files by using this method – just replace \u2018search\u2019 and \u2018replace\u2019 with the current and new filetype.\u00a0Note:<\/strong>\u00a0Don\u2019t forget to add a backslash before your filetype, or else the command won\u2019t work.<\/p>\n

Example:<\/strong><\/p>\n

rename -v 's\/\\.search\/\\.replace\/' *<\/pre>\n

More Advanced Commands<\/h3>\n

If you would like to rename files and have a number incrementing at the end of the filename, this can be done as well with some Perl:<\/p>\n

rename -v 's\/search\/our $i; sprintf(\"replace%03d.txt\", 1+$i++)\/e' *<\/pre>\n

The reason for the \u2018%03d\u2019 in this command is to describe how many zeroes we want in front of our numbers. This is used to keep files in order when sorting files alphabetically. ‘sprintf’ is actually a function from Perl, used to format the name. This shows one of the strengths of this version of rename. Here is an example.<\/p>\n

Files:<\/strong><\/p>\n

file1\r\n\r\nfile2<\/pre>\n

Command:<\/strong><\/p>\n

rename -v 's\/file*\/our $i; sprintf(\"name%03d.txt\", 1+$i++)\/e' *<\/pre>\n

Output:<\/strong><\/p>\n

name001\r\n\r\nname002<\/pre>\n

And in case you need a specific format for your filenames, there are plenty of Perl scripts available online for renaming files in all sorts of formats.<\/p>\n

RHEL-based Operating Systems<\/b><\/h2>\n

RedHat Enterprise Linux and its related distributions such as CentOS also have a version of \u2018rename\u2019 installed by default. It is the \u2018util-linux\u2019 variant, meaning that it is not as feature-rich as the one installed on most Debian-based systems.<\/p>\n

Basic File Renaming<\/h3>\n

As far as the util-linux version of rename goes, all it does is simple search-and-replace operations on filenames. You enter what string you are searching for in your files, then you enter what string you would like to replace the search string with.<\/p>\n

rename \"search\" \"replace\" *<\/pre>\n

This is all of the functionality available with the built in rename utility on RHEL-based systems. If you need to do more advanced renaming, bash scripting using loops and operations chained together will be the way to go. Here is an example for renaming files while adding an incrementing number to the end of the filename. Just change \u2018search\u2019 and \u2018replace\u2019 in the script to the respective names which you are searching for and replacing. Here is an example:<\/p>\n

Step 1: Create a file for the script in the directory containing the files you wish to rename.<\/h3>\n
touch renameScript.sh<\/pre>\n

Step 2: Open the file with your preferred text editor, and add this script to the file. When done, close your text editor. (Don’t forget to change ‘search’ and ‘replace’ in the script to your searched and replaced filenames!)<\/strong><\/h3>\n
find -name 'search' | # find file\r\n\r\ngawk 'BEGIN{ a=1 }{ printf \"mv %s replace%03d\\n\", $0, a++ }' \r\n\r\nbash # run<\/pre>\n

Step 3: Make the file executable.<\/h3>\n
chmod 644 renameScript.sh<\/pre>\n

Step 4: Execute your script by entering the following command.<\/h3>\n
sh renameScript.sh<\/pre>\n

Here’s what it would look like in action.<\/p>\n

Files:<\/strong><\/p>\n

file1\r\n\r\nfile2<\/pre>\n

Command:<\/strong><\/p>\n

sh renameScript.sh<\/pre>\n

Output:<\/strong><\/p>\n

name001\r\n\r\nname002<\/pre>\n

And should you need a specific format for your filenames, there are plenty of bash scripts online designed around renaming files with many different formats.<\/p>\n

Of course, you don’t need to rename your files using scripts on Linux, if you use one of our Blazing-Fast SSD VPS Hosting services<\/a>\u00a0– in which case you can simply ask our expert Linux admins to rename your files for you. They are available 24\u00d77 and will take care of your request immediately.<\/p>\n

PS.<\/strong><\/span> If you liked this post on how to rename multiple files on Linux, please share it with your friends on social networks using the buttons on the left, or simply leave a reply below. Thanks.<\/p>\n","protected":false},"excerpt":{"rendered":"

We’ll show you, how to rename multiple files on Linux . Every operating system in the modern world comes with … <\/p>\n

Read More<\/a><\/p>\n","protected":false},"author":4,"featured_media":25913,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1236],"tags":[27,1661],"yoast_head":"\nHow to Rename Multiple Files on Linux - RoseHosting<\/title>\n<meta name=\"description\" content=\"How to Rename Multiple Files on Linux - RoseHosting\" \/>\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.rosehosting.com\/blog\/how-to-rename-multiple-files-on-linux\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Rename Multiple Files on Linux - RoseHosting\" \/>\n<meta property=\"og:description\" content=\"How to Rename Multiple Files on Linux - RoseHosting\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.rosehosting.com\/blog\/how-to-rename-multiple-files-on-linux\/\" \/>\n<meta property=\"og:site_name\" content=\"RoseHosting\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/RoseHosting\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/rosehosting.helpdesk\" \/>\n<meta property=\"article:published_time\" content=\"2018-03-07T09:25:42+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-12-05T12:43:43+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/03\/How-to-Rename-Multiple-Files-on-Linux.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"600\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Jeff Wilson\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@rosehosting\" \/>\n<meta name=\"twitter:site\" content=\"@rosehosting\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Jeff Wilson\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-rename-multiple-files-on-linux\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-rename-multiple-files-on-linux\/\"},\"author\":{\"name\":\"Jeff Wilson\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713\"},\"headline\":\"How to Rename Multiple Files on Linux\",\"datePublished\":\"2018-03-07T09:25:42+00:00\",\"dateModified\":\"2022-12-05T12:43:43+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-rename-multiple-files-on-linux\/\"},\"wordCount\":868,\"commentCount\":5,\"publisher\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-rename-multiple-files-on-linux\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/03\/How-to-Rename-Multiple-Files-on-Linux.jpg\",\"keywords\":[\"Linux\",\"rename files\"],\"articleSection\":[\"Guides\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.rosehosting.com\/blog\/how-to-rename-multiple-files-on-linux\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-rename-multiple-files-on-linux\/\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/how-to-rename-multiple-files-on-linux\/\",\"name\":\"How to Rename Multiple Files on Linux - RoseHosting\",\"isPartOf\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-rename-multiple-files-on-linux\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-rename-multiple-files-on-linux\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/03\/How-to-Rename-Multiple-Files-on-Linux.jpg\",\"datePublished\":\"2018-03-07T09:25:42+00:00\",\"dateModified\":\"2022-12-05T12:43:43+00:00\",\"description\":\"How to Rename Multiple Files on Linux - RoseHosting\",\"breadcrumb\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-rename-multiple-files-on-linux\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.rosehosting.com\/blog\/how-to-rename-multiple-files-on-linux\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-rename-multiple-files-on-linux\/#primaryimage\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/03\/How-to-Rename-Multiple-Files-on-Linux.jpg\",\"contentUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/03\/How-to-Rename-Multiple-Files-on-Linux.jpg\",\"width\":1200,\"height\":600,\"caption\":\"How to Rename Multiple Files on Linux\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-rename-multiple-files-on-linux\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.rosehosting.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Rename Multiple Files on Linux\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#website\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/\",\"name\":\"RoseHosting\",\"description\":\"Premium Linux Tutorials Since 2001\",\"publisher\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.rosehosting.com\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#organization\",\"name\":\"RoseHosting\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png\",\"contentUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png\",\"width\":192,\"height\":192,\"caption\":\"RoseHosting\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/RoseHosting\",\"https:\/\/x.com\/rosehosting\",\"https:\/\/www.linkedin.com\/in\/rosehosting\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713\",\"name\":\"Jeff Wilson\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/09271207587f897ab46faaed9b355252?s=96&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/09271207587f897ab46faaed9b355252?s=96&r=g\",\"caption\":\"Jeff Wilson\"},\"description\":\"An experienced Linux veteran with many years of experience. Helping other Linux admins with frequent Linux and business-related blog posts on the RoseHosting blog. Techie by choice. Loving nature and travel. Happily married and father of two lovely children.\",\"sameAs\":[\"https:\/\/www.rosehosting.com\",\"https:\/\/www.facebook.com\/rosehosting.helpdesk\"],\"url\":\"https:\/\/www.rosehosting.com\/blog\/author\/jwilson\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Rename Multiple Files on Linux - RoseHosting","description":"How to Rename Multiple Files on Linux - RoseHosting","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.rosehosting.com\/blog\/how-to-rename-multiple-files-on-linux\/","og_locale":"en_US","og_type":"article","og_title":"How to Rename Multiple Files on Linux - RoseHosting","og_description":"How to Rename Multiple Files on Linux - RoseHosting","og_url":"https:\/\/www.rosehosting.com\/blog\/how-to-rename-multiple-files-on-linux\/","og_site_name":"RoseHosting","article_publisher":"https:\/\/www.facebook.com\/RoseHosting","article_author":"https:\/\/www.facebook.com\/rosehosting.helpdesk","article_published_time":"2018-03-07T09:25:42+00:00","article_modified_time":"2022-12-05T12:43:43+00:00","og_image":[{"width":1200,"height":600,"url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/03\/How-to-Rename-Multiple-Files-on-Linux.jpg","type":"image\/jpeg"}],"author":"Jeff Wilson","twitter_card":"summary_large_image","twitter_creator":"@rosehosting","twitter_site":"@rosehosting","twitter_misc":{"Written by":"Jeff Wilson","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-rename-multiple-files-on-linux\/#article","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-rename-multiple-files-on-linux\/"},"author":{"name":"Jeff Wilson","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713"},"headline":"How to Rename Multiple Files on Linux","datePublished":"2018-03-07T09:25:42+00:00","dateModified":"2022-12-05T12:43:43+00:00","mainEntityOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-rename-multiple-files-on-linux\/"},"wordCount":868,"commentCount":5,"publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-rename-multiple-files-on-linux\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/03\/How-to-Rename-Multiple-Files-on-Linux.jpg","keywords":["Linux","rename files"],"articleSection":["Guides"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.rosehosting.com\/blog\/how-to-rename-multiple-files-on-linux\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-rename-multiple-files-on-linux\/","url":"https:\/\/www.rosehosting.com\/blog\/how-to-rename-multiple-files-on-linux\/","name":"How to Rename Multiple Files on Linux - RoseHosting","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-rename-multiple-files-on-linux\/#primaryimage"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-rename-multiple-files-on-linux\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/03\/How-to-Rename-Multiple-Files-on-Linux.jpg","datePublished":"2018-03-07T09:25:42+00:00","dateModified":"2022-12-05T12:43:43+00:00","description":"How to Rename Multiple Files on Linux - RoseHosting","breadcrumb":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-rename-multiple-files-on-linux\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.rosehosting.com\/blog\/how-to-rename-multiple-files-on-linux\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-rename-multiple-files-on-linux\/#primaryimage","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/03\/How-to-Rename-Multiple-Files-on-Linux.jpg","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/03\/How-to-Rename-Multiple-Files-on-Linux.jpg","width":1200,"height":600,"caption":"How to Rename Multiple Files on Linux"},{"@type":"BreadcrumbList","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-rename-multiple-files-on-linux\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.rosehosting.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Rename Multiple Files on Linux"}]},{"@type":"WebSite","@id":"https:\/\/www.rosehosting.com\/blog\/#website","url":"https:\/\/www.rosehosting.com\/blog\/","name":"RoseHosting","description":"Premium Linux Tutorials Since 2001","publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.rosehosting.com\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.rosehosting.com\/blog\/#organization","name":"RoseHosting","url":"https:\/\/www.rosehosting.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png","width":192,"height":192,"caption":"RoseHosting"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/RoseHosting","https:\/\/x.com\/rosehosting","https:\/\/www.linkedin.com\/in\/rosehosting\/"]},{"@type":"Person","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713","name":"Jeff Wilson","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/09271207587f897ab46faaed9b355252?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/09271207587f897ab46faaed9b355252?s=96&r=g","caption":"Jeff Wilson"},"description":"An experienced Linux veteran with many years of experience. Helping other Linux admins with frequent Linux and business-related blog posts on the RoseHosting blog. Techie by choice. Loving nature and travel. Happily married and father of two lovely children.","sameAs":["https:\/\/www.rosehosting.com","https:\/\/www.facebook.com\/rosehosting.helpdesk"],"url":"https:\/\/www.rosehosting.com\/blog\/author\/jwilson\/"}]}},"_links":{"self":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/25869"}],"collection":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/comments?post=25869"}],"version-history":[{"count":2,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/25869\/revisions"}],"predecessor-version":[{"id":43715,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/25869\/revisions\/43715"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media\/25913"}],"wp:attachment":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media?parent=25869"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/categories?post=25869"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/tags?post=25869"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}