<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	>
<channel>
	<title>Комментарии на: Лекция №7 - регулярные файлы и линки.</title>
	<atom:link href="http://igorka.com.ua/2009-10-08/lekciya-7-regulyarnye-fajly-i-linki/feed/" rel="self" type="application/rss+xml" />
	<link>http://igorka.com.ua/2009-10-08/lekciya-7-regulyarnye-fajly-i-linki/</link>
	<description>Немного обо всем и все о немногом, или практический опыт системного администратора.</description>
	<pubDate>Thu, 17 May 2012 22:16:22 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>От: Lesya</title>
		<link>http://igorka.com.ua/2009-10-08/lekciya-7-regulyarnye-fajly-i-linki/comment-page-1/#comment-4438</link>
		<dc:creator>Lesya</dc:creator>
		<pubDate>Tue, 04 Jan 2011 06:34:56 +0000</pubDate>
		<guid isPermaLink="false">http://igorka.com.ua/?p=1136#comment-4438</guid>
		<description>Спасибо за статью и за быстрый ответ</description>
		<content:encoded><![CDATA[<p>Спасибо за статью и за быстрый ответ</p>
]]></content:encoded>
	</item>
	<item>
		<title>От: Igorka</title>
		<link>http://igorka.com.ua/2009-10-08/lekciya-7-regulyarnye-fajly-i-linki/comment-page-1/#comment-4419</link>
		<dc:creator>Igorka</dc:creator>
		<pubDate>Tue, 28 Dec 2010 16:18:38 +0000</pubDate>
		<guid isPermaLink="false">http://igorka.com.ua/?p=1136#comment-4419</guid>
		<description>Можно.
С помощью команды find. Если кратко, то вот пример:
[cc]
$ ls -li lnfile5
659942 -rw-r--r-- 4 igor igor 0 2010-07-29 17:11 lnfile5
[/cc]
Есть 4 ссылки. Ищем файлы по имени:
[cc]
$ find -samefile lnfile5
./timetest/lnfile6
./timetest/lnfile5
./timetest/file4
./lnfile5
[/cc]

или по номеру inode:

[cc]
$ find -inum 659942
./timetest/lnfile6
./timetest/lnfile5
./timetest/file4
./lnfile5
[/cc]

Только учитывайте особенности команды find (где и как по умолчанию она ищет файлы).</description>
		<content:encoded><![CDATA[<p>Можно.<br />
С помощью команды find. Если кратко, то вот пример:</p>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">$ ls -li lnfile5<br />
659942 -rw-r--r-- 4 igor igor 0 2010-07-29 17:11 lnfile5</div></td></tr></tbody></table></div>
<p>Есть 4 ссылки. Ищем файлы по имени:</p>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">$ find -samefile lnfile5<br />
./timetest/lnfile6<br />
./timetest/lnfile5<br />
./timetest/file4<br />
./lnfile5</div></td></tr></tbody></table></div>
<p>или по номеру inode:</p>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">$ find -inum 659942<br />
./timetest/lnfile6<br />
./timetest/lnfile5<br />
./timetest/file4<br />
./lnfile5</div></td></tr></tbody></table></div>
<p>Только учитывайте особенности команды find (где и как по умолчанию она ищет файлы).</p>
]]></content:encoded>
	</item>
	<item>
		<title>От: Lesya</title>
		<link>http://igorka.com.ua/2009-10-08/lekciya-7-regulyarnye-fajly-i-linki/comment-page-1/#comment-4415</link>
		<dc:creator>Lesya</dc:creator>
		<pubDate>Tue, 28 Dec 2010 09:21:25 +0000</pubDate>
		<guid isPermaLink="false">http://igorka.com.ua/?p=1136#comment-4415</guid>
		<description>А если жесткие ссылки находятся не в одном каталоге, и с помощью команды ls мы видим, что жестких ссылок на файл, допустим 5, можно ли узнать их местонахождение?</description>
		<content:encoded><![CDATA[<p>А если жесткие ссылки находятся не в одном каталоге, и с помощью команды ls мы видим, что жестких ссылок на файл, допустим 5, можно ли узнать их местонахождение?</p>
]]></content:encoded>
	</item>
	<item>
		<title>От: Igorka: Временные параметры файла - atime mtime ctime</title>
		<link>http://igorka.com.ua/2009-10-08/lekciya-7-regulyarnye-fajly-i-linki/comment-page-1/#comment-3507</link>
		<dc:creator>Igorka: Временные параметры файла - atime mtime ctime</dc:creator>
		<pubDate>Thu, 29 Jul 2010 16:34:19 +0000</pubDate>
		<guid isPermaLink="false">http://igorka.com.ua/?p=1136#comment-3507</guid>
		<description>[...] chmod), изменяется владелец файла (команда chown), создаются жесткие ссылки на файл (команда ln). В этом плане различий с каталогом нет, с [...]</description>
		<content:encoded><![CDATA[<p>[...] chmod), изменяется владелец файла (команда chown), создаются жесткие ссылки на файл (команда ln). В этом плане различий с каталогом нет, с [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>От: Igorka: Установка и привязка профиля qutim к Dropbox в Ubuntu</title>
		<link>http://igorka.com.ua/2009-10-08/lekciya-7-regulyarnye-fajly-i-linki/comment-page-1/#comment-3494</link>
		<dc:creator>Igorka: Установка и привязка профиля qutim к Dropbox в Ubuntu</dc:creator>
		<pubDate>Wed, 28 Jul 2010 13:23:09 +0000</pubDate>
		<guid isPermaLink="false">http://igorka.com.ua/?p=1136#comment-3494</guid>
		<description>[...] решался очень просто - с использованием механизма символических ссылок. Ниже как раз и описана кратко установка и действия [...]</description>
		<content:encoded><![CDATA[<p>[...] решался очень просто - с использованием механизма символических ссылок. Ниже как раз и описана кратко установка и действия [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>От: Алексей</title>
		<link>http://igorka.com.ua/2009-10-08/lekciya-7-regulyarnye-fajly-i-linki/comment-page-1/#comment-3090</link>
		<dc:creator>Алексей</dc:creator>
		<pubDate>Wed, 19 May 2010 15:15:26 +0000</pubDate>
		<guid isPermaLink="false">http://igorka.com.ua/?p=1136#comment-3090</guid>
		<description>;-) спасибо за интересные статейки</description>
		<content:encoded><![CDATA[<p>;-) спасибо за интересные статейки</p>
]]></content:encoded>
	</item>
	<item>
		<title>От: Igorka</title>
		<link>http://igorka.com.ua/2009-10-08/lekciya-7-regulyarnye-fajly-i-linki/comment-page-1/#comment-3073</link>
		<dc:creator>Igorka</dc:creator>
		<pubDate>Tue, 18 May 2010 04:28:51 +0000</pubDate>
		<guid isPermaLink="false">http://igorka.com.ua/?p=1136#comment-3073</guid>
		<description>Алексей, большущее спасибо! Уже поправил.</description>
		<content:encoded><![CDATA[<p>Алексей, большущее спасибо! Уже поправил.</p>
]]></content:encoded>
	</item>
	<item>
		<title>От: Алексей</title>
		<link>http://igorka.com.ua/2009-10-08/lekciya-7-regulyarnye-fajly-i-linki/comment-page-1/#comment-3072</link>
		<dc:creator>Алексей</dc:creator>
		<pubDate>Mon, 17 May 2010 19:53:22 +0000</pubDate>
		<guid isPermaLink="false">http://igorka.com.ua/?p=1136#comment-3072</guid>
		<description>ln file1 file4; ln file1 file5; ln file1 link1
----------------------------------------------

ln file1 file4; ln file1 file5; ln -s file1 link1

во, как-то так :)</description>
		<content:encoded><![CDATA[<p>ln file1 file4; ln file1 file5; ln file1 link1<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<p>ln file1 file4; ln file1 file5; ln -s file1 link1</p>
<p>во, как-то так :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>От: IgorKa - Информационный ресурс &#187; Лекция №6 - каталоги /proc, /sys. Блочные и символьные файлы-устройства</title>
		<link>http://igorka.com.ua/2009-10-08/lekciya-7-regulyarnye-fajly-i-linki/comment-page-1/#comment-1573</link>
		<dc:creator>IgorKa - Информационный ресурс &#187; Лекция №6 - каталоги /proc, /sys. Блочные и символьные файлы-устройства</dc:creator>
		<pubDate>Tue, 19 Jan 2010 07:58:53 +0000</pubDate>
		<guid isPermaLink="false">http://igorka.com.ua/?p=1136#comment-1573</guid>
		<description>[...] следующей лекции поговорим о регулярных файлах и [...]</description>
		<content:encoded><![CDATA[<p>[...] следующей лекции поговорим о регулярных файлах и [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

