{"id":48134,"date":"2018-01-31T05:52:20","date_gmt":"2018-01-31T00:22:20","guid":{"rendered":"http:\/\/blog.odango.com\/?p=48134"},"modified":"2023-02-03T13:56:39","modified_gmt":"2023-02-03T08:26:39","slug":"linux-interview-questions-and-answers","status":"publish","type":"post","link":"https:\/\/asha24.net\/blog\/linux-interview-questions-and-answers\/","title":{"rendered":"Linux Interview Questions and Answers"},"content":{"rendered":"\n[et_pb_section bb_built=&#8221;1&#8243; next_background_color=&#8221;#000000&#8243;][et_pb_row][et_pb_column type=&#8221;4_4&#8243;][et_pb_post_title _builder_version=&#8221;3.0.106&#8243; title=&#8221;on&#8221; meta=&#8221;off&#8221; author=&#8221;on&#8221; date=&#8221;on&#8221; categories=&#8221;on&#8221; comments=&#8221;on&#8221; featured_image=&#8221;off&#8221; featured_placement=&#8221;below&#8221; text_color=&#8221;dark&#8221; text_background=&#8221;off&#8221; title_font=&#8221;Titillium Web||||||||&#8221; title_font_size=&#8221;47&#8243; title_font_size_tablet=&#8221;40&#8243; title_font_size_phone=&#8221;35&#8243; title_font_size_last_edited=&#8221;on|desktop&#8221; title_text_color=&#8221;rgba(0,0,0,0.8)&#8221; title_text_align=&#8221;left&#8221; text_shadow_horizontal_length=&#8221;0.08em&#8221; text_shadow_vertical_length=&#8221;0.08em&#8221; text_shadow_blur_strength=&#8221;0.08em&#8221; title_text_shadow_horizontal_length=&#8221;0.08em&#8221; title_text_shadow_vertical_length=&#8221;0.08em&#8221; custom_margin=&#8221;|||10%&#8221; \/][\/et_pb_column][\/et_pb_row][et_pb_row][et_pb_column type=&#8221;4_4&#8243;][et_pb_text _builder_version=&#8221;3.0.106&#8243; background_layout=&#8221;light&#8221; text_font=&#8221;Titillium Web|300|||||||&#8221; text_font_size=&#8221;20&#8243; text_font_size_last_edited=&#8221;on|desktop&#8221; text_text_color=&#8221;rgba(0,0,0,0.8)&#8221; text_line_height=&#8221;1.6em&#8221; max_width=&#8221;800px&#8221; custom_margin=&#8221;|||10%&#8221; text_line_height_last_edited=&#8221;off|phone&#8221; max_width_last_edited=&#8221;off|phone&#8221; custom_margin_last_edited=&#8221;off|desktop&#8221;]\r\n\r\n<strong>1) What is \u2018inode\u2019?\r\nAns<\/strong>: All UNIX files have its description stored in a structure called \u2018inode\u2019. The inode contains info about the file-size, its location, time of last access, time of last modification, permission and so on. Directories are also represented as files and have an associated inode.\r\n\r\n<hr \/>\r\n\r\n<strong>2) What are the process states in UNIX?\r\nAns:<\/strong>\u00a0As a process executes it changes state according to its circumstances. Unix processes have the following states:\r\nRunning: The process is either running or it is ready to run . Waiting: The process is waiting for an event or for a resource. Stopped: The process has been stopped, usually by receiving a signal. Zombie: The processes are dead but have not been removed from the process table.\r\n\r\n<hr \/>\r\n\r\n<strong>3) What command should you use to check the number of files and disk space used and each user\u2019s defined quotas?\r\nAns:\u00a0<\/strong>repquota.\r\n\r\n<hr \/>\r\n\r\n<strong>4) What command is used to remove the password assigned to a group?\r\nAns:<\/strong>\u00a0gpasswd \u2013r\r\n\r\n<hr \/>\r\n\r\n<strong>5) What can you type at a command line to determine which shell you are using?\r\nAns:\u00a0<\/strong>echo $SHELL\r\n\r\n<hr \/>\r\n\r\n<strong>6) Write a command to find all of the files which have been accessed within the last 30 days.\r\nAns:\u00a0<\/strong>find \/ -type f -atime -30 &gt; filename.txt\r\n\r\n<hr \/>\r\n\r\n<strong>7) What is a zombie?\r\nAns:<\/strong>\u00a0Zombie is a process state when the child dies before the parent process. In this case the structural information of the process is still in the process table.\r\n\r\n<hr \/>\r\n\r\n<strong>8) What daemon is responsible for tracking events on your system?\r\nAns:<\/strong>\u00a0syslogd.\r\n\r\n<hr \/>\r\n\r\n<strong>9) What do you mean a File System?\r\nAns:<\/strong>\u00a0File System is a method to store and organize files and directories on disk. A file system can have 2 different formats called file system types. These formats determine how the information is stored as files and directories.\r\n\r\n<hr \/>\r\n\r\n<strong>10) Tell me the name of directory structure hierarchy for Linux\r\nAns:\u00a0<\/strong>\/root \/boot \/bin \/sbin \/proc \/mnt \/usr \/var \/lib \/etc \/dev \/opt \/srv \/tmp \/media.\r\n\r\n<hr \/>\r\n\r\n<strong>11) What does \/boot directory contains?\r\nAns:\u00a0<\/strong>The \/boot\/ directory contains static files required to boot the system, such as the Linux kernel, boot loader configuration files. These files are essential for the system to boot properly.\r\n\r\n<hr \/>\r\n\r\n<strong>12) If someone deletes \/boot directory from your server, than what will happen?\r\nAns:\u00a0<\/strong>In that case your server will be in unbootable state. Your Server can\u2019t boot without \/boot directory because this directory contains all bootable files\r\n\r\n<hr \/>\r\n\r\n<strong>13) What does \/dev directory contain?\r\nAns:<\/strong>The \/dev directory contains all device files that are attached to system or virtual device files that are provided by the kernel.\r\n\r\n<hr \/>\r\n\r\n<strong>14) What is the role of udev daemon?\r\nAns:<\/strong>\u00a0The udev demon used to create and remove all these device nodes or files in \/dev\/ directory.\r\n\r\n<hr \/>\r\n\r\n<strong>15) What kind of files or nodes \/dev\/ directory contains and how do I access or see device files?\r\nAns:<\/strong>\u00a0Block Device Files:-\r\nBlock device files talks to devices block by block [1 block at a time (1 block = 512 bytes to 32KB)]. Examples: \u2013 USB disk, CDROM, Hard Disk # ls \/dev\/sd*\r\nbrw-rw\u2014- 1 root root 8,0 Mar 15 2009 sda\r\nbrw-rw\u2014- 1 root root 8,1 Mar 15 2009 sda1\r\nbrw-rw\u2014- 1 root root 8,2 Mar 15 2009 sda2\r\nbrw-rw\u2014- 1 root root 8, 3 Mar 15 2009 sda3\r\nbrw-rw\u2014- 1 root root 8, 4 Mar 15 2009 sda4\r\nbrw-rw\u2014- 1 root root 8, 16 Mar 15 2009 sdb\r\nCharacter Device Files:-\r\nCharacter device files talk to devices character by character. Examples: \u2013 Virtual terminals, terminals, serial modems, random numbers #ls \/dev\/tty*\r\ncrw-rw\u2014- 1 root root 4, 64 Mar 15 2009 ttyS0\r\ncrw-rw\u2014- 1 root root 4,65 Mar 15 2009 ttyS1\r\ncrw-rw\u2014- 1 root root 4,66 Mar 15 2009 ttyS2\r\ncrw-rw\u2014- 1 root root 4,67 Mar 15 2009 ttyS3\r\n\r\n<hr \/>\r\n\r\n<strong>16) Tell me the name of device file for PS\/2 mouse connection.\r\nAns:<\/strong>\u00a0\/dev\/psaux\r\n\r\n<hr \/>\r\n\r\n<strong>17) Tell me the name of device file for parallel port (Printers).\r\nAns:<\/strong>\u00a0\/dev\/lp0\r\n\r\n<hr \/>\r\n\r\n<strong>18) What does \/etc\/X11\/ directory contains?\r\nAns:\u00a0<\/strong>The \/etc\/X11\/ directory is for X Window System configuration files, such asxorg.conf.\r\n\r\n<hr \/>\r\n\r\n<strong>19) What does \/etc\/skell directory contains?\r\nAns:\u00a0<\/strong>The \/etc\/skel directory contains files and directories that are automatically copied over to a new user\u2019s home directory when such user is created by the useradd or adduser command.\r\n\r\n<hr \/>\r\n\r\n<strong>20) Tell me name of Linux File systems?\r\nAns:<\/strong>\u00a0Ext2 Ext3 Ext4\r\n\r\n<hr \/>\r\n\r\n<strong>21) What is the difference between ext2 and ext3 file systems?\r\nAns:\u00a0<\/strong>The ext3 file system is an enhanced version of the ext2 file system.\r\nThe most important difference between Ext2 and Ext3 is that Ext3 supports journaling. After an unexpected power failure or system crash (also called an unclean system shutdown), each mounted ext2 file system on the machine must be checked for consistency by the e2fsck program. This is a time-consuming process and during this time, any data on the volumes is unreachable. The journaling provided by the ext3 file system means that this sort of file system check is no longer necessary after an unclean system shutdown. The only time a consistency check occurs using ext3 is in certain rare hardware failure cases, such as hard drive failures. The time to recover an ext3 file system after an unclean system shutdown does not depend on the size of the file system or the number of files; rather, it depends on the size of the journal used to maintain consistency. The default journal size takes about a second to recover, depending on the speed of the hardware.\r\n\r\n<hr \/>\r\n\r\n<strong>22)\u00a0Any idea about ext4 file system?\r\nAns:\u00a0<\/strong>The ext4 or fourth extended filesystem is a journaling file system developed as the successor to ext3. Ext4 filesystem released as a functionally complete and stable filesystem in Linux with kernel version 2.6.28.\r\nFeatures of ext4 file system:-\r\n1. Currently, Ext3 supports 16 TB of maximum file system size and 2 TB of maximum file size. Ext4 have 1 EB of maximum file system size and 16 TB of maximum file size.\r\n[An EB or exabyte is 1018 bytes or 1,048,576 TB] 2. Fast fsck check than ext3 3 In Ext4 the journaling feature can be disabled, which provides a small performance improvement. 4. Online defragmentation. 5. Delayed allocation Ext4 uses a filesystem performance technique called allocate-on-flush, also known as delayed allocation. It consists of delaying block allocation until the data is going to be written to the disk, unlike some other file systems, which may allocate the necessary blocks before that step.\r\n\r\n<hr \/>\r\n\r\n<strong>23) How we create ext3 file system on \/dev\/sda7 disk?\r\nAns:<\/strong>\u00a0# mkfs \u2013j \/dev\/sda7.\r\n\r\n<hr \/>\r\n\r\n<strong>24)\u00a0Can we convert ext2 filesystem to ext3 file system?\r\nAns:\u00a0<\/strong>Yes, we can convert ext2 to ext3 file system by tune2fs command.\r\ntune2fs \u2013j \/dev\/\r\n\r\n<hr \/>\r\n\r\n<strong>25) How we will create ext4 file system? #\r\nAns:<\/strong>\u00a0mke2fs -t ext4 \/dev\/DEV\r\n\r\n<hr \/>\r\n\r\n<strong>26) Explain \/proc filesystem?\r\nAns:<\/strong>\u00a0\/proc is a virtual filesystem that provides detailed information about Linux kernel, hardware\u2019s and running processes. Files under \/proc directory named as Virtual files. Because \/proc contains virtual files that\u2019s why it is called virtual file system. These virtual files have unique qualities. Most of them are listed as zero bytes in size. Virtual files such as \/proc\/interrupts, \/proc\/meminfo, \/proc\/mounts, and \/proc\/partitions provide an up-to-the-moment glimpse of the system\u2019s hardware. Others, like the \/proc\/filesystems file and the \/proc\/sys\/ directory provide system configuration information and interfaces.\r\n\r\n[\/et_pb_text][\/et_pb_column][\/et_pb_row][\/et_pb_section][et_pb_section bb_built=&#8221;1&#8243; prev_background_color=&#8221;#000000&#8243;][et_pb_row][et_pb_column type=&#8221;4_4&#8243;][et_pb_team_member _builder_version=&#8221;3.0.106&#8243; name=&#8221;Nitesh&#8221; position=&#8221;Author&#8221; facebook_url=&#8221;&#8221; twitter_url=&#8221;&#8221; google_url=&#8221;&#8221; linkedin_url=&#8221;&#8221; background_layout=&#8221;light&#8221; body_font=&#8221;Titillium Web||||||||&#8221; body_font_size=&#8221;16&#8243; body_font_size_last_edited=&#8221;on|desktop&#8221; header_font=&#8221;Titillium Web|700|||||||&#8221; image_url=&#8221;https:\/\/asha24.net\/blog\/\/wp-content\/uploads\/2018\/03\/Nitesh.gif&#8221;]\r\n\r\nBonjour. A curious dreamer enchanted by various languages, I write towards making technology seem fun here at Asha24.\r\n\r\n[\/et_pb_team_member][\/et_pb_column][\/et_pb_row][\/et_pb_section]\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":4,"featured_media":48138,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_et_pb_use_builder":"on","_et_pb_old_content":"","_et_gb_content_width":"","footnotes":""},"categories":[57],"tags":[58],"class_list":["post-48134","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-interview-questions","tag-interview-questions"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v17.0 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Linux Interview Questions and Answers - Asha24 Blog<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/asha24.net\/blog\/linux-interview-questions-and-answers\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Linux Interview Questions and Answers - Asha24 Blog\" \/>\n<meta property=\"og:url\" content=\"https:\/\/asha24.net\/blog\/linux-interview-questions-and-answers\/\" \/>\n<meta property=\"og:site_name\" content=\"Asha24 Blog\" \/>\n<meta property=\"article:published_time\" content=\"2018-01-31T00:22:20+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-02-03T08:26:39+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/asha24.net\/blog\/wp-content\/uploads\/2018\/03\/domenico-loia-310197-1024x683.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1024\" \/>\n\t<meta property=\"og:image:height\" content=\"683\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Mahesh\" \/>\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\":\"WebSite\",\"@id\":\"https:\/\/asha24.net\/blog\/#website\",\"url\":\"https:\/\/asha24.net\/blog\/\",\"name\":\"Asha24 Blog\",\"description\":\"Dedication Towards Learning\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/asha24.net\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"ImageObject\",\"@id\":\"https:\/\/asha24.net\/blog\/linux-interview-questions-and-answers\/#primaryimage\",\"inLanguage\":\"en-US\",\"url\":\"https:\/\/asha24.net\/blog\/wp-content\/uploads\/2018\/03\/domenico-loia-310197.jpg\",\"contentUrl\":\"https:\/\/asha24.net\/blog\/wp-content\/uploads\/2018\/03\/domenico-loia-310197.jpg\",\"width\":5848,\"height\":3899},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/asha24.net\/blog\/linux-interview-questions-and-answers\/#webpage\",\"url\":\"https:\/\/asha24.net\/blog\/linux-interview-questions-and-answers\/\",\"name\":\"Linux Interview Questions and Answers - Asha24 Blog\",\"isPartOf\":{\"@id\":\"https:\/\/asha24.net\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/asha24.net\/blog\/linux-interview-questions-and-answers\/#primaryimage\"},\"datePublished\":\"2018-01-31T00:22:20+00:00\",\"dateModified\":\"2023-02-03T08:26:39+00:00\",\"author\":{\"@id\":\"https:\/\/asha24.net\/blog\/#\/schema\/person\/f6167b78bbaddfc399ae1154cd5b6759\"},\"breadcrumb\":{\"@id\":\"https:\/\/asha24.net\/blog\/linux-interview-questions-and-answers\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/asha24.net\/blog\/linux-interview-questions-and-answers\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/asha24.net\/blog\/linux-interview-questions-and-answers\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/asha24.net\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Linux Interview Questions and Answers\"}]},{\"@type\":\"Person\",\"@id\":\"https:\/\/asha24.net\/blog\/#\/schema\/person\/f6167b78bbaddfc399ae1154cd5b6759\",\"name\":\"Mahesh\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\/\/asha24.net\/blog\/#personlogo\",\"inLanguage\":\"en-US\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/085c03e75ffb51af2509c1cfad9c7d78b30236d43a008db2e46f96e2f40c67fc?s=96&d=wavatar&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/085c03e75ffb51af2509c1cfad9c7d78b30236d43a008db2e46f96e2f40c67fc?s=96&d=wavatar&r=g\",\"caption\":\"Mahesh\"},\"url\":\"https:\/\/asha24.net\/blog\/author\/mahesh\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Linux Interview Questions and Answers - Asha24 Blog","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:\/\/asha24.net\/blog\/linux-interview-questions-and-answers\/","og_locale":"en_US","og_type":"article","og_title":"Linux Interview Questions and Answers - Asha24 Blog","og_url":"https:\/\/asha24.net\/blog\/linux-interview-questions-and-answers\/","og_site_name":"Asha24 Blog","article_published_time":"2018-01-31T00:22:20+00:00","article_modified_time":"2023-02-03T08:26:39+00:00","og_image":[{"width":1024,"height":683,"path":"2018\/03\/domenico-loia-310197-1024x683.jpg","url":"https:\/\/asha24.net\/blog\/wp-content\/uploads\/2018\/03\/domenico-loia-310197-1024x683.jpg","size":"large","id":48138,"alt":"","pixels":699392,"type":"image\/jpeg"}],"twitter_card":"summary_large_image","twitter_misc":{"Written by":"Mahesh","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebSite","@id":"https:\/\/asha24.net\/blog\/#website","url":"https:\/\/asha24.net\/blog\/","name":"Asha24 Blog","description":"Dedication Towards Learning","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/asha24.net\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"ImageObject","@id":"https:\/\/asha24.net\/blog\/linux-interview-questions-and-answers\/#primaryimage","inLanguage":"en-US","url":"https:\/\/asha24.net\/blog\/wp-content\/uploads\/2018\/03\/domenico-loia-310197.jpg","contentUrl":"https:\/\/asha24.net\/blog\/wp-content\/uploads\/2018\/03\/domenico-loia-310197.jpg","width":5848,"height":3899},{"@type":"WebPage","@id":"https:\/\/asha24.net\/blog\/linux-interview-questions-and-answers\/#webpage","url":"https:\/\/asha24.net\/blog\/linux-interview-questions-and-answers\/","name":"Linux Interview Questions and Answers - Asha24 Blog","isPartOf":{"@id":"https:\/\/asha24.net\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/asha24.net\/blog\/linux-interview-questions-and-answers\/#primaryimage"},"datePublished":"2018-01-31T00:22:20+00:00","dateModified":"2023-02-03T08:26:39+00:00","author":{"@id":"https:\/\/asha24.net\/blog\/#\/schema\/person\/f6167b78bbaddfc399ae1154cd5b6759"},"breadcrumb":{"@id":"https:\/\/asha24.net\/blog\/linux-interview-questions-and-answers\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/asha24.net\/blog\/linux-interview-questions-and-answers\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/asha24.net\/blog\/linux-interview-questions-and-answers\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/asha24.net\/blog\/"},{"@type":"ListItem","position":2,"name":"Linux Interview Questions and Answers"}]},{"@type":"Person","@id":"https:\/\/asha24.net\/blog\/#\/schema\/person\/f6167b78bbaddfc399ae1154cd5b6759","name":"Mahesh","image":{"@type":"ImageObject","@id":"https:\/\/asha24.net\/blog\/#personlogo","inLanguage":"en-US","url":"https:\/\/secure.gravatar.com\/avatar\/085c03e75ffb51af2509c1cfad9c7d78b30236d43a008db2e46f96e2f40c67fc?s=96&d=wavatar&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/085c03e75ffb51af2509c1cfad9c7d78b30236d43a008db2e46f96e2f40c67fc?s=96&d=wavatar&r=g","caption":"Mahesh"},"url":"https:\/\/asha24.net\/blog\/author\/mahesh\/"}]}},"_links":{"self":[{"href":"https:\/\/asha24.net\/blog\/wp-json\/wp\/v2\/posts\/48134","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/asha24.net\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/asha24.net\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/asha24.net\/blog\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/asha24.net\/blog\/wp-json\/wp\/v2\/comments?post=48134"}],"version-history":[{"count":5,"href":"https:\/\/asha24.net\/blog\/wp-json\/wp\/v2\/posts\/48134\/revisions"}],"predecessor-version":[{"id":52093,"href":"https:\/\/asha24.net\/blog\/wp-json\/wp\/v2\/posts\/48134\/revisions\/52093"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/asha24.net\/blog\/wp-json\/wp\/v2\/media\/48138"}],"wp:attachment":[{"href":"https:\/\/asha24.net\/blog\/wp-json\/wp\/v2\/media?parent=48134"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/asha24.net\/blog\/wp-json\/wp\/v2\/categories?post=48134"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/asha24.net\/blog\/wp-json\/wp\/v2\/tags?post=48134"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}