ALT Linux Community general discussions
 help / color / mirror / Atom feed
* [Comm] узнать тип FS из скрипта
@ 2003-10-17 15:45 Денис Смирнов
  2003-10-17 17:07 ` Pyatnitskich Evgeniy
  2003-10-20  5:50 ` [Comm] " shawkat
  0 siblings, 2 replies; 13+ messages in thread
From: Денис Смирнов @ 2003-10-17 15:45 UTC (permalink / raw)
  To: community

Как узнать тип файловой системы на выбраном разделе из скрипта? Нужно
различать как минимум ext2, ext3, reiserfs, xfs.

-- 
С уважением, Денис

http://freesource.info



^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [Comm] узнать тип FS из скрипта
  2003-10-17 15:45 [Comm] узнать тип FS из скрипта Денис Смирнов
@ 2003-10-17 17:07 ` Pyatnitskich Evgeniy
  2003-10-17 18:15   ` Vitaly Lipatov
  2003-10-17 20:49   ` [Comm] " Денис Смирнов
  2003-10-20  5:50 ` [Comm] " shawkat
  1 sibling, 2 replies; 13+ messages in thread
From: Pyatnitskich Evgeniy @ 2003-10-17 17:07 UTC (permalink / raw)
  To: community

On Fri, Oct 17, 2003 at 07:45:17PM +0400, Денис Смирнов wrote:
> Как узнать тип файловой системы на выбраном разделе из скрипта? Нужно
> различать как минимум ext2, ext3, reiserfs, xfs.

[eugene@eldorado eugene]$ cat /etc/fstab | grep /dev/hda6 | cut -d\  -f3
ext3
[eugene@eldorado eugene]$

Не прокатит?

-- 
      ---Regards, P.E.M. <pem@nm.ru>---



^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [Comm] узнать тип FS из скрипта
  2003-10-17 17:07 ` Pyatnitskich Evgeniy
@ 2003-10-17 18:15   ` Vitaly Lipatov
  2003-10-17 20:49   ` [Comm] " Денис Смирнов
  1 sibling, 0 replies; 13+ messages in thread
From: Vitaly Lipatov @ 2003-10-17 18:15 UTC (permalink / raw)
  To: community

On Пятница 17 Октябрь 2003 21:07, Pyatnitskich Evgeniy wrote:
> On Fri, Oct 17, 2003 at 07:45:17PM +0400, Денис Смирнов wrote:
> > Как узнать тип файловой системы на выбраном разделе из
> > скрипта? Нужно различать как минимум ext2, ext3, reiserfs,
> > xfs.
>
> [eugene@eldorado eugene]$ cat /etc/fstab | grep /dev/hda6 |
> cut -d\  -f3 ext3
> [eugene@eldorado eugene]$
>
> Не прокатит?
Может лучше смотреть на вывод
$ mount

-- 
Lav
Виталий Липатов
Санкт-Петербург
GNU! ALT Linux Team! LaTeX! LyX!


^ permalink raw reply	[flat|nested] 13+ messages in thread

* [Comm] Re: узнать тип FS из скрипта
  2003-10-17 17:07 ` Pyatnitskich Evgeniy
  2003-10-17 18:15   ` Vitaly Lipatov
@ 2003-10-17 20:49   ` Денис Смирнов
  2003-10-17 21:42     ` taras
  2003-10-17 21:57     ` Sergey Degtyaryov
  1 sibling, 2 replies; 13+ messages in thread
From: Денис Смирнов @ 2003-10-17 20:49 UTC (permalink / raw)
  To: community

On Sat, Oct 18, 2003 at 12:07:27AM +0700, Pyatnitskich Evgeniy wrote:

 > > Как узнать тип файловой системы на выбраном разделе из скрипта? Нужно
 > > различать как минимум ext2, ext3, reiserfs, xfs.
 > [eugene@eldorado eugene]$ cat /etc/fstab | grep /dev/hda6 | cut -d\  -f3
 > ext3
 > [eugene@eldorado eugene]$
 > Не прокатит?

Нужно уметь обрабатывать вариант, когда раздел не смонтирован.

-- 
С уважением, Денис

http://freesource.info


^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [Comm] Re: узнать тип FS из скрипта
  2003-10-17 20:49   ` [Comm] " Денис Смирнов
@ 2003-10-17 21:42     ` taras
  2003-10-17 23:36       ` Денис Смирнов
  2003-10-17 21:57     ` Sergey Degtyaryov
  1 sibling, 1 reply; 13+ messages in thread
From: taras @ 2003-10-17 21:42 UTC (permalink / raw)
  To: community



Денис Смирнов пишет:

>On Sat, Oct 18, 2003 at 12:07:27AM +0700, Pyatnitskich Evgeniy wrote:
>
> > > Как узнать тип файловой системы на выбраном разделе из скрипта? Нужно
> > > различать как минимум ext2, ext3, reiserfs, xfs.
> > [eugene@eldorado eugene]$ cat /etc/fstab | grep /dev/hda6 | cut -d\  -f3
> > ext3
> > [eugene@eldorado eugene]$
> > Не прокатит?
>
>Нужно уметь обрабатывать вариант, когда раздел не смонтирован.
>
parted -s /dev/hda print

--
taras





^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [Comm] Re: узнать тип FS из скрипта
  2003-10-17 20:49   ` [Comm] " Денис Смирнов
  2003-10-17 21:42     ` taras
@ 2003-10-17 21:57     ` Sergey Degtyaryov
  2003-10-17 23:38       ` Денис Смирнов
  1 sibling, 1 reply; 13+ messages in thread
From: Sergey Degtyaryov @ 2003-10-17 21:57 UTC (permalink / raw)
  To: community

Денис Смирнов wrote:
> On Sat, Oct 18, 2003 at 12:07:27AM +0700, Pyatnitskich Evgeniy wrote:
> 
>  > > Как узнать тип файловой системы на выбраном разделе из скрипта? Нужно
>  > > различать как минимум ext2, ext3, reiserfs, xfs.
>  > [eugene@eldorado eugene]$ cat /etc/fstab | grep /dev/hda6 | cut -d\  -f3
>  > ext3
>  > [eugene@eldorado eugene]$
>  > Не прокатит?
> 
> Нужно уметь обрабатывать вариант, когда раздел не смонтирован.
> 

[maga@home /]$ sudo fdisk -l | grep '^/dev'
/dev/hda1   *         1      3187  25599546    c  Win95 FAT32 (LBA)
/dev/hda2          3188      3671   3887730   83  Linux
/dev/hda3          3698      4865   9381960    5  Extended
/dev/hda5          3698      3736    313236   82  Linux swap
/dev/hda6          3737      4501   6144831   83  Linux
/dev/hda7          4502      4865   2923798+  83  Linux
[maga@home /]$

--
Сергей Дегтярев



^ permalink raw reply	[flat|nested] 13+ messages in thread

* [Comm] Re: узнать тип FS из скрипта
  2003-10-17 21:42     ` taras
@ 2003-10-17 23:36       ` Денис Смирнов
  0 siblings, 0 replies; 13+ messages in thread
From: Денис Смирнов @ 2003-10-17 23:36 UTC (permalink / raw)
  To: community

On Sat, Oct 18, 2003 at 01:42:18AM +0400, taras wrote:

 >> Нужно уметь обрабатывать вариант, когда раздел не смонтирован.
 > parted -s /dev/hda print

Не работает в случае LVM.
 
-- 
С уважением, Денис

http://freesource.info


^ permalink raw reply	[flat|nested] 13+ messages in thread

* [Comm] Re: узнать тип FS из скрипта
  2003-10-17 21:57     ` Sergey Degtyaryov
@ 2003-10-17 23:38       ` Денис Смирнов
  2003-10-19 18:36         ` Igor Homyakov
  0 siblings, 1 reply; 13+ messages in thread
From: Денис Смирнов @ 2003-10-17 23:38 UTC (permalink / raw)
  To: community

On Sat, Oct 18, 2003 at 01:57:11AM +0400, Sergey Degtyaryov wrote:

 > [maga@home /]$ sudo fdisk -l | grep '^/dev'
 > /dev/hda1   *         1      3187  25599546    c  Win95 FAT32 (LBA)
 > /dev/hda2          3188      3671   3887730   83  Linux
 > /dev/hda3          3698      4865   9381960    5  Extended
 > /dev/hda5          3698      3736    313236   82  Linux swap
 > /dev/hda6          3737      4501   6144831   83  Linux
 > /dev/hda7          4502      4865   2923798+  83  Linux
 > [maga@home /]$

Во-первых не работает с LVM, во-вторых кто сказал что информация в
partition о типе раздела соответствует тому, что реально лежит в этом
разделе?
 
-- 
С уважением, Денис

http://freesource.info


^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [Comm] Re: узнать тип FS из скрипта
  2003-10-17 23:38       ` Денис Смирнов
@ 2003-10-19 18:36         ` Igor Homyakov
  2003-10-20  5:55           ` Igor Homyakov
  0 siblings, 1 reply; 13+ messages in thread
From: Igor Homyakov @ 2003-10-19 18:36 UTC (permalink / raw)
  To: community


тогда надо правильно формулировать задачу. 
Аналогов fstyp в linux нет, придеться писать самому.

* Денис Смирнов <mithraen%freesource!info> [031018 02:44]:
> On Sat, Oct 18, 2003 at 01:57:11AM +0400, Sergey Degtyaryov wrote:

>  > [maga@home /]$ sudo fdisk -l | grep '^/dev'
>  > /dev/hda1   *         1      3187  25599546    c  Win95 FAT32 (LBA)
>  > /dev/hda2          3188      3671   3887730   83  Linux
>  > /dev/hda3          3698      4865   9381960    5  Extended
>  > /dev/hda5          3698      3736    313236   82  Linux swap
>  > /dev/hda6          3737      4501   6144831   83  Linux
>  > /dev/hda7          4502      4865   2923798+  83  Linux
>  > [maga@home /]$

> Во-первых не работает с LVM, во-вторых кто сказал что информация в
> partition о типе раздела соответствует тому, что реально лежит в этом
> разделе?
>  
> -- 
> С уважением, Денис

> http://freesource.info
> !DSPAM:3f9070e896851907813259!


-- 
Igor Homyakov
<homyakov at altlinux dot ru>
http://counter.li.org/cgi-bin/runscript/display-person.cgi?user=190141


^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [Comm] узнать тип FS из скрипта
  2003-10-17 15:45 [Comm] узнать тип FS из скрипта Денис Смирнов
  2003-10-17 17:07 ` Pyatnitskich Evgeniy
@ 2003-10-20  5:50 ` shawkat
  1 sibling, 0 replies; 13+ messages in thread
From: shawkat @ 2003-10-20  5:50 UTC (permalink / raw)
  To: community

> Как узнать тип файловой системы на выбраном разделе из скрипта? Нужно
> различать как минимум ext2, ext3, reiserfs, xfs.

df -T



^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [Comm] Re: узнать тип FS из скрипта
  2003-10-19 18:36         ` Igor Homyakov
@ 2003-10-20  5:55           ` Igor Homyakov
  2003-10-20 14:42             ` Денис Смирнов
  2003-10-20 15:08             ` Денис Смирнов
  0 siblings, 2 replies; 13+ messages in thread
From: Igor Homyakov @ 2003-10-20  5:55 UTC (permalink / raw)
  To: community


"я солгал" (c) 
есть такая утилита http://mkp.net/fstyp/

* Igor Homyakov <homyakov%ramax!spb!ru> [031019 21:33]:
> тогда надо правильно формулировать задачу. 
> Аналогов fstyp в linux нет, придеться писать самому.

> * Денис Смирнов <mithraen%freesource!info> [031018 02:44]:
> > On Sat, Oct 18, 2003 at 01:57:11AM +0400, Sergey Degtyaryov wrote:

> >  > [maga@home /]$ sudo fdisk -l | grep '^/dev'
> >  > /dev/hda1   *         1      3187  25599546    c  Win95 FAT32 (LBA)
> >  > /dev/hda2          3188      3671   3887730   83  Linux
> >  > /dev/hda3          3698      4865   9381960    5  Extended
> >  > /dev/hda5          3698      3736    313236   82  Linux swap
> >  > /dev/hda6          3737      4501   6144831   83  Linux
> >  > /dev/hda7          4502      4865   2923798+  83  Linux
> >  > [maga@home /]$

> > Во-первых не работает с LVM, во-вторых кто сказал что информация в
> > partition о типе раздела соответствует тому, что реально лежит в этом
> > разделе?
> >  
> > -- 
> > С уважением, Денис

> > http://freesource.info
> > 

> -- 
> Igor Homyakov
> <homyakov at altlinux dot ru>
> http://counter.li.org/cgi-bin/runscript/display-person.cgi?user=190141

-- 
Igor Homyakov
<homyakov at altlinux dot ru>
http://counter.li.org/cgi-bin/runscript/display-person.cgi?user=190141


^ permalink raw reply	[flat|nested] 13+ messages in thread

* [Comm] Re: узнать тип FS из скрипта
  2003-10-20  5:55           ` Igor Homyakov
@ 2003-10-20 14:42             ` Денис Смирнов
  2003-10-20 15:08             ` Денис Смирнов
  1 sibling, 0 replies; 13+ messages in thread
From: Денис Смирнов @ 2003-10-20 14:42 UTC (permalink / raw)
  To: community

On Mon, Oct 20, 2003 at 09:55:21AM +0400, Igor Homyakov wrote:

 > "я солгал" (c) 
 > есть такая утилита http://mkp.net/fstyp/

Спасибо, иду пробовать. 
 
-- 
С уважением, Денис

http://freesource.info



^ permalink raw reply	[flat|nested] 13+ messages in thread

* [Comm] Re: узнать тип FS из скрипта
  2003-10-20  5:55           ` Igor Homyakov
  2003-10-20 14:42             ` Денис Смирнов
@ 2003-10-20 15:08             ` Денис Смирнов
  1 sibling, 0 replies; 13+ messages in thread
From: Денис Смирнов @ 2003-10-20 15:08 UTC (permalink / raw)
  To: community

On Mon, Oct 20, 2003 at 09:55:21AM +0400, Igor Homyakov wrote:

 > "я солгал" (c) 
 > есть такая утилита http://mkp.net/fstyp/

Спасибо, иду пробовать. 
 
-- 
С уважением, Денис

http://freesource.info



^ permalink raw reply	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2003-10-20 15:08 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-10-17 15:45 [Comm] узнать тип FS из скрипта Денис Смирнов
2003-10-17 17:07 ` Pyatnitskich Evgeniy
2003-10-17 18:15   ` Vitaly Lipatov
2003-10-17 20:49   ` [Comm] " Денис Смирнов
2003-10-17 21:42     ` taras
2003-10-17 23:36       ` Денис Смирнов
2003-10-17 21:57     ` Sergey Degtyaryov
2003-10-17 23:38       ` Денис Смирнов
2003-10-19 18:36         ` Igor Homyakov
2003-10-20  5:55           ` Igor Homyakov
2003-10-20 14:42             ` Денис Смирнов
2003-10-20 15:08             ` Денис Смирнов
2003-10-20  5:50 ` [Comm] " shawkat

ALT Linux Community general discussions

This inbox may be cloned and mirrored by anyone:

	git clone --mirror http://lore.altlinux.org/community/0 community/git/0.git

	# If you have public-inbox 1.1+ installed, you may
	# initialize and index your mirror using the following commands:
	public-inbox-init -V2 community community/ http://lore.altlinux.org/community \
		mandrake-russian@linuxteam.iplabs.ru community@lists.altlinux.org community@lists.altlinux.ru community@lists.altlinux.com
	public-inbox-index community

Example config snippet for mirrors.
Newsgroup available over NNTP:
	nntp://lore.altlinux.org/org.altlinux.lists.community


AGPL code for this site: git clone https://public-inbox.org/public-inbox.git