{"id":21007,"date":"2016-12-23T07:41:10","date_gmt":"2016-12-23T13:41:10","guid":{"rendered":"https:\/\/www.rosehosting.com\/blog\/?p=21007"},"modified":"2022-06-03T03:42:26","modified_gmt":"2022-06-03T08:42:26","slug":"quick-linux-tips-and-tricks","status":"publish","type":"post","link":"https:\/\/www.rosehosting.com\/blog\/quick-linux-tips-and-tricks\/","title":{"rendered":"Quick Linux Tips and Tricks"},"content":{"rendered":"
<\/div>

\"quick<\/p>\n

Using a Linux terminal is always difficult, especially at the beginning when everything is new to the user. I remember my first contact with a Linux terminal like it was yesterday. After all, I was interacting with a machine that responded to everything I typed. I started learning the basic commands such as “cd”, “ps” “w” “mkdir” which at the time it was like I entered another world, a digitalized one which I’m just starting to uncover. The excitement I felt back then still hits me when I discover some great combination of commands to ease the server\/service administration or configuration.<\/p>\n

Linux is an all-present OS in our world. It is an extremely flexible system due to its open source nature which allows anyone to contribute. It’s way faster than Windows out of the box, and unlike Windows, you can get Linux for free<\/a>. An astonishing fact is that a whopping 96.4% of the top 500 supercomputers in the world are running on Linux. It can be found anywhere, from smart refrigerators to self-driving cars.<\/p>\n

If this does not convince you to start learning Linux, just imagine the plethora of available jobs for Linux system and network engineers, kernel developers or any Linux-connected-job for that matter. And the beauty of it is that it’s never too late to start learning<\/strong>.<\/p>\n

The purpose of this article is not to laud (which I actually did) Linux as the best and most flexible operating system, but to provide some tips and tricks that I learned over the years to Linux users whether they are beginners or intermediate users. For the absolute beginners out there, we have some fine articles on Basic Shell Commands<\/a> and 10 Basic Linux Commands<\/a> that you can check beforehand.<\/p>\n

A Linux command interface or a terminal is a vast ocean of possibilities. You can do lots of stuff using the commands, which some people find intimidating considering the large amount of commands available at the tips of their fingers. The good thing is that you don’t have to memorize anything because you can use commands such as “apropos” or “history” to get a list of commands that you can use or used in the past respectively.<\/p>\n

So let’s start typing, shall we?<\/p>\n

In order to use a Linux terminal, you need to have a Linux VPS<\/a> (preferably with full root access) or a local Linux machine that you can use. Therefore, open your terminal or connect to your Linux server.<\/p>\n

First, check the user with which you are logged in. The whoami command can be used:<\/p>\n

[root@vps \/]# whoami\r\nroot<\/pre>\n

So you have root access, good. You have all the required privileges and access to every corner of the corresponding Linux system. Be careful, though, with great power comes great responsibility. Root access can always turn into a nightmare if the user is not careful with the commands he runs as root.<\/p>\n

For starters, let’s check the top disk-consuming directories in \/etc. Use the du command along with some needed flags:<\/p>\n

[root@vps \/]# du -chsx \/etc\/* | sort -rh | head -6<\/pre>\n

We ran this command into our CentOS 7 VPS<\/a> command shell and got the below output:<\/p>\n

27M     total\r\n15M     \/etc\/httpd\r\n6.7M    \/etc\/udev\r\n1.5M    \/etc\/pki\r\n660K    \/etc\/services\r\n312K    \/etc\/sysconfig<\/pre>\n

Create a parent directory along with their children using a single command:<\/p>\n

[root@vps \/]# mkdir -p tmp\/rose\/hosting\/bestvps<\/pre>\n

By using && you are defining commands by their successful execution. A simple example:<\/p>\n

[root@vps \/]# cd tmp\/rose\/hosting\/bestvps && ls -lat<\/pre>\n

If the first command does not succeed for some reason, then the second one will not be executed.<\/p>\n

What if you want to list all directories in your user home directory? Use this fine command:<\/p>\n

[root@vps \/]# find $HOME -type d -ls | less<\/pre>\n

To copy files into multiple directories run:<\/p>\n

[root@vps ~]# echo \/usr\/dir1 \/var\/dir2 \/nas\/dir3 |  xargs -n 1 cp -v \/path\/to\/file<\/pre>\n

Check how many connections and from which IP are made to your web server port 80:<\/p>\n

[root@vps \/]# netstat -plane | grep :80 | awk '{print $5}' | grep -Eo '([0-9]{1,3}\\.){3}[0-9]{1,3}'| sort | uniq -c | sort -n<\/pre>\n

Make recursive changes on permissions for files and directories by running the below command into the location of the parent directory that you want to change permissions for. For example, if you have your WordPress powered site in \/var\/www\/html\/, navigate to that directory and run:<\/p>\n

For a recursive change of file permissions:<\/p>\n

[root@vps \/]# find . -type f -exec chmod 644 {} \\;<\/pre>\n

Directories:<\/p>\n

[root@vps \/]# find . -type d -exec chmod 755 {} \\;<\/pre>\n

These two commands are especially useful when you need to quickly set the permissions for every file\/directory inside the corresponding document tree.<\/p>\n

Remove all emails from Exim’s mail queue:<\/p>\n

[root@vps \/]# exim -bp | exiqgrep -i | xargs exim -Mrm<\/pre>\n

To find world-writable files on your server:<\/p>\n

[root@vps \/]# find \/ -type f -perm -o+w -exec ls -l {} \\;<\/pre>\n

To find world-writable directories in \/home:<\/p>\n

[root@vps \/]# find \/home -type d -perm -o+w -exec ls -ld {} \\;<\/pre>\n

Sometimes you need to list processes with a common name. For example, I need to list all processes that are run by postfix. So I execute:<\/p>\n

[root@vps \/]# ps -ef | grep postfix | grep -v grep | awk '{print $2}'<\/pre>\n

Then If I want to terminate those same processes this command will be used:<\/p>\n

[root@vps \/]# kill -9 `ps -ef | grep postfix | grep -v grep | awk '{print $2}'`<\/pre>\n

Want to delete all files in a directory that don’t match a certain file extension?<\/p>\n

[root@vps \/]# $rm !(*.html | *.php | *.png)<\/pre>\n

This command will delete all files that are not .html, .php or .png<\/p>\n

Edit a file on a remote host using the Vim text editor:<\/p>\n

[root@vps \/]# vim scp:\/\/username@host\/path\/to\/file<\/pre>\n

Replace all instances of a given word with the one you want without opening the file with a text editor:<\/p>\n

[root@vps \/]# perl -pi -e 's,RoseHosting,BestManagedVPS' file.php<\/pre>\n

The above command will replace RoseHosting with BestManagedVPS in the file.php file.<\/p>\n

Once I wanted to learn commands and their flags, but I didn’t know which one to start with. So I used a command to generate random man pages:<\/p>\n

[root@vps \/]# man $(ls \/bin | shuf | head -1)<\/pre>\n

It can be fun to randomly learn new commands and leave the choice to your Linux machine.<\/p>\n

Sometimes during hectic work hours you created or modified files, but you didn’t remember which one you’ve created\/modified. So why not use a command to list today’s files only?<\/p>\n

[root@vps \/]# ls -al --time-style=+%D | grep `date +%D`<\/pre>\n

will list today’s files in an output in particular format.<\/p>\n

You can have a chat session with another logged in user into your Linux machine. Yes, you’ve read it right.<\/p>\n

[root@vps \/]# write jeffrey<\/pre>\n

So if jeffrey is logged in, this command will place you on a blank line where everything you type will be sent to the other user.<\/p>\n

A very useful command that I use is whatis. Its output provides a summary of what a command does.<\/p>\n

[root@vps \/]# whatis man\r\nman (1)              - an interface to the on-line reference manuals<\/pre>\n
[root@vps \/]# whatis pwd\r\npwd (1)              - print name of current\/working directory<\/pre>\n

And last but not least a personal favorite of mine that you can use to check your disk write speed.<\/p>\n

[root@vps \/]# dd if=\/dev\/zero of=\/tmp\/output.txt bs=8k count=256k conv=fdatasync; rm -rf \/tmp\/output.txt<\/pre>\n
\n

That’s it for now. I hope you’ll find some usage in these Linux tricks with commands which are just a glimpse of the possibilities that Linux commands offer. Of course, if you have some tricks up your sleeve, share them in the comments section below.<\/p>\n","protected":false},"excerpt":{"rendered":"

Using a Linux terminal is always difficult, especially at the beginning when everything is new to the user. I remember … <\/p>\n

Read More<\/a><\/p>\n","protected":false},"author":4,"featured_media":21126,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[21],"tags":[103],"yoast_head":"\nQuick Linux Tips and Tricks - RoseHosting<\/title>\n<meta name=\"description\" content=\"Quick Linux Tips and Tricks - 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\/quick-linux-tips-and-tricks\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Quick Linux Tips and Tricks - RoseHosting\" \/>\n<meta property=\"og:description\" content=\"Quick Linux Tips and Tricks - RoseHosting\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.rosehosting.com\/blog\/quick-linux-tips-and-tricks\/\" \/>\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=\"2016-12-23T13:41:10+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-06-03T08:42:26+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/12\/linux-tips-and-tricks.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=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/quick-linux-tips-and-tricks\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/quick-linux-tips-and-tricks\/\"},\"author\":{\"name\":\"Jeff Wilson\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713\"},\"headline\":\"Quick Linux Tips and Tricks\",\"datePublished\":\"2016-12-23T13:41:10+00:00\",\"dateModified\":\"2022-06-03T08:42:26+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/quick-linux-tips-and-tricks\/\"},\"wordCount\":1026,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/quick-linux-tips-and-tricks\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/12\/linux-tips-and-tricks.jpg\",\"keywords\":[\"Commands\"],\"articleSection\":[\"Tips and Tricks\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.rosehosting.com\/blog\/quick-linux-tips-and-tricks\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/quick-linux-tips-and-tricks\/\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/quick-linux-tips-and-tricks\/\",\"name\":\"Quick Linux Tips and Tricks - RoseHosting\",\"isPartOf\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/quick-linux-tips-and-tricks\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/quick-linux-tips-and-tricks\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/12\/linux-tips-and-tricks.jpg\",\"datePublished\":\"2016-12-23T13:41:10+00:00\",\"dateModified\":\"2022-06-03T08:42:26+00:00\",\"description\":\"Quick Linux Tips and Tricks - RoseHosting\",\"breadcrumb\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/quick-linux-tips-and-tricks\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.rosehosting.com\/blog\/quick-linux-tips-and-tricks\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/quick-linux-tips-and-tricks\/#primaryimage\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/12\/linux-tips-and-tricks.jpg\",\"contentUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/12\/linux-tips-and-tricks.jpg\",\"width\":1200,\"height\":600,\"caption\":\"quick linux tips and tricks\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/quick-linux-tips-and-tricks\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.rosehosting.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Quick Linux Tips and Tricks\"}]},{\"@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":"Quick Linux Tips and Tricks - RoseHosting","description":"Quick Linux Tips and Tricks - 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\/quick-linux-tips-and-tricks\/","og_locale":"en_US","og_type":"article","og_title":"Quick Linux Tips and Tricks - RoseHosting","og_description":"Quick Linux Tips and Tricks - RoseHosting","og_url":"https:\/\/www.rosehosting.com\/blog\/quick-linux-tips-and-tricks\/","og_site_name":"RoseHosting","article_publisher":"https:\/\/www.facebook.com\/RoseHosting","article_author":"https:\/\/www.facebook.com\/rosehosting.helpdesk","article_published_time":"2016-12-23T13:41:10+00:00","article_modified_time":"2022-06-03T08:42:26+00:00","og_image":[{"width":1200,"height":600,"url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/12\/linux-tips-and-tricks.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":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.rosehosting.com\/blog\/quick-linux-tips-and-tricks\/#article","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/quick-linux-tips-and-tricks\/"},"author":{"name":"Jeff Wilson","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713"},"headline":"Quick Linux Tips and Tricks","datePublished":"2016-12-23T13:41:10+00:00","dateModified":"2022-06-03T08:42:26+00:00","mainEntityOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/quick-linux-tips-and-tricks\/"},"wordCount":1026,"commentCount":0,"publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/quick-linux-tips-and-tricks\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/12\/linux-tips-and-tricks.jpg","keywords":["Commands"],"articleSection":["Tips and Tricks"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.rosehosting.com\/blog\/quick-linux-tips-and-tricks\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.rosehosting.com\/blog\/quick-linux-tips-and-tricks\/","url":"https:\/\/www.rosehosting.com\/blog\/quick-linux-tips-and-tricks\/","name":"Quick Linux Tips and Tricks - RoseHosting","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/quick-linux-tips-and-tricks\/#primaryimage"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/quick-linux-tips-and-tricks\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/12\/linux-tips-and-tricks.jpg","datePublished":"2016-12-23T13:41:10+00:00","dateModified":"2022-06-03T08:42:26+00:00","description":"Quick Linux Tips and Tricks - RoseHosting","breadcrumb":{"@id":"https:\/\/www.rosehosting.com\/blog\/quick-linux-tips-and-tricks\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.rosehosting.com\/blog\/quick-linux-tips-and-tricks\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/quick-linux-tips-and-tricks\/#primaryimage","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/12\/linux-tips-and-tricks.jpg","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/12\/linux-tips-and-tricks.jpg","width":1200,"height":600,"caption":"quick linux tips and tricks"},{"@type":"BreadcrumbList","@id":"https:\/\/www.rosehosting.com\/blog\/quick-linux-tips-and-tricks\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.rosehosting.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Quick Linux Tips and Tricks"}]},{"@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\/21007"}],"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=21007"}],"version-history":[{"count":1,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/21007\/revisions"}],"predecessor-version":[{"id":41904,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/21007\/revisions\/41904"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media\/21126"}],"wp:attachment":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media?parent=21007"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/categories?post=21007"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/tags?post=21007"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}