<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Linux tar and inittab questions in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/linux-tar-and-inittab-questions/m-p/4865770#M44982</link>
    <description>Hi ALL,&lt;BR /&gt;&lt;BR /&gt;I'm a Linux newbie, anyone please help me on the question below: &lt;BR /&gt;&lt;BR /&gt;Question 1 : Which switches should I used with the tar command to find out &lt;BR /&gt;the different between two tar files?&lt;BR /&gt;&lt;BR /&gt;Question 2 : Do changes to the inittab file require a reboot in order to &lt;BR /&gt;take effect?&lt;BR /&gt;&lt;BR /&gt;Thank you.&lt;BR /&gt;GOH&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Mon, 18 Oct 2004 07:36:58 GMT</pubDate>
    <dc:creator>Ryan Goh</dc:creator>
    <dc:date>2004-10-18T07:36:58Z</dc:date>
    <item>
      <title>Linux tar and inittab questions</title>
      <link>https://community.hpe.com/t5/operating-system-linux/linux-tar-and-inittab-questions/m-p/4865770#M44982</link>
      <description>Hi ALL,&lt;BR /&gt;&lt;BR /&gt;I'm a Linux newbie, anyone please help me on the question below: &lt;BR /&gt;&lt;BR /&gt;Question 1 : Which switches should I used with the tar command to find out &lt;BR /&gt;the different between two tar files?&lt;BR /&gt;&lt;BR /&gt;Question 2 : Do changes to the inittab file require a reboot in order to &lt;BR /&gt;take effect?&lt;BR /&gt;&lt;BR /&gt;Thank you.&lt;BR /&gt;GOH&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 18 Oct 2004 07:36:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/linux-tar-and-inittab-questions/m-p/4865770#M44982</guid>
      <dc:creator>Ryan Goh</dc:creator>
      <dc:date>2004-10-18T07:36:58Z</dc:date>
    </item>
    <item>
      <title>Re: Linux tar and inittab questions</title>
      <link>https://community.hpe.com/t5/operating-system-linux/linux-tar-and-inittab-questions/m-p/4865771#M44983</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;Below is the link which has a lot of details about tar&lt;BR /&gt;&lt;A href="http://www.delorie.com/gnu/docs/tar/tar_toc.html" target="_blank"&gt;http://www.delorie.com/gnu/docs/tar/tar_toc.html&lt;/A&gt;&lt;BR /&gt;Regarding inittab file if you make a change on it you can do a init q ,this will re-read the inittab file, no reboot is required.&lt;BR /&gt;&lt;BR /&gt;Rgds&lt;BR /&gt;&lt;BR /&gt;Gopi</description>
      <pubDate>Mon, 18 Oct 2004 07:52:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/linux-tar-and-inittab-questions/m-p/4865771#M44983</guid>
      <dc:creator>HGN</dc:creator>
      <dc:date>2004-10-18T07:52:05Z</dc:date>
    </item>
    <item>
      <title>Re: Linux tar and inittab questions</title>
      <link>https://community.hpe.com/t5/operating-system-linux/linux-tar-and-inittab-questions/m-p/4865772#M44984</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Question 1&lt;BR /&gt;I think there is no such option.&lt;BR /&gt;You can only find differences between archive and file system with option&lt;BR /&gt;   tar -df your.tar directory&lt;BR /&gt;&lt;BR /&gt;Question 2: &lt;BR /&gt;you have to re-examine /etc/inittab. &lt;BR /&gt;It is done by init q command.</description>
      <pubDate>Mon, 18 Oct 2004 08:12:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/linux-tar-and-inittab-questions/m-p/4865772#M44984</guid>
      <dc:creator>Slawomir Gora</dc:creator>
      <dc:date>2004-10-18T08:12:29Z</dc:date>
    </item>
    <item>
      <title>Re: Linux tar and inittab questions</title>
      <link>https://community.hpe.com/t5/operating-system-linux/linux-tar-and-inittab-questions/m-p/4865773#M44985</link>
      <description>1. Use the diff command to compare contents of two files. They can based on what you find be fed into the tar command.&lt;BR /&gt;&lt;BR /&gt;2. Boot order is affected by the simple ascii sort of the soft links in /etc/rc.#&lt;BR /&gt;&lt;BR /&gt;first rc.0 then rc.1 etc. Change the order of those thinks alphabettically and you change the boot order on your machine.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Mon, 18 Oct 2004 08:15:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/linux-tar-and-inittab-questions/m-p/4865773#M44985</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2004-10-18T08:15:18Z</dc:date>
    </item>
    <item>
      <title>Re: Linux tar and inittab questions</title>
      <link>https://community.hpe.com/t5/operating-system-linux/linux-tar-and-inittab-questions/m-p/4865774#M44986</link>
      <description>1. -t in tar is for table of contents&lt;BR /&gt;&lt;BR /&gt;# tar -tvf file1.tar &amp;gt; file1_tar_content&lt;BR /&gt;# tar -tvf file2.tar &amp;gt; file2_tar_content&lt;BR /&gt;# diff file1_tar_content file2_tar_content&lt;BR /&gt;&lt;BR /&gt;2. There lots of different ways to tell init to re-examine the /etc/inittab file. For example:&lt;BR /&gt;&lt;BR /&gt;telinit q&lt;BR /&gt;telinit Q&lt;BR /&gt;init q&lt;BR /&gt;init Q&lt;BR /&gt;kill -HUP 1&lt;BR /&gt;kill -1 1&lt;BR /&gt;...&lt;BR /&gt;&lt;BR /&gt;HTH,&lt;BR /&gt;Ross</description>
      <pubDate>Mon, 18 Oct 2004 08:36:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/linux-tar-and-inittab-questions/m-p/4865774#M44986</guid>
      <dc:creator>Ross Minkov</dc:creator>
      <dc:date>2004-10-18T08:36:56Z</dc:date>
    </item>
    <item>
      <title>Re: Linux tar and inittab questions</title>
      <link>https://community.hpe.com/t5/operating-system-linux/linux-tar-and-inittab-questions/m-p/4865775#M44987</link>
      <description>Thanks all.&lt;BR /&gt;</description>
      <pubDate>Mon, 18 Oct 2004 20:38:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/linux-tar-and-inittab-questions/m-p/4865775#M44987</guid>
      <dc:creator>Ryan Goh</dc:creator>
      <dc:date>2004-10-18T20:38:45Z</dc:date>
    </item>
    <item>
      <title>Re: Linux tar and inittab questions</title>
      <link>https://community.hpe.com/t5/operating-system-linux/linux-tar-and-inittab-questions/m-p/4865776#M44988</link>
      <description>Thank all for help</description>
      <pubDate>Sun, 19 Dec 2004 08:36:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/linux-tar-and-inittab-questions/m-p/4865776#M44988</guid>
      <dc:creator>Ryan Goh</dc:creator>
      <dc:date>2004-12-19T08:36:08Z</dc:date>
    </item>
  </channel>
</rss>

