- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: bdfmegs for Linux ?
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-04-2012 05:48 AM
01-04-2012 05:48 AM
bdfmegs for Linux ?
hello,
does a equivalent of "bdfmegs" (like dfmegs or bdfmegs) for LINUX exists ?
last version is :
bdfmegs ver 6.1 available
regards,
- Tags:
- bdfmegs
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-04-2012 06:29 AM
01-04-2012 06:29 AM
Re: bdfmegs for Linux ?
Most Linux distributions use GNU df command, which includes the -h option:
$ df -h Filesystem Size Used Avail Use% Mounted on /dev/mapper/vg00-root 9.9G 7.7G 1.8G 82% / tmpfs 2.0G 12K 2.0G 1% /lib/init/rw udev 1.9G 376K 1.9G 1% /dev tmpfs 2.0G 540K 2.0G 1% /dev/shm /dev/mapper/vg00-home 99G 86G 7.5G 93% /home /dev/sda1 228M 65M 151M 31% /boot
If you want exactly one line per device, use -P to get POSIX output format, which should be parseable by scripts:
$ df -hP Filesystem Size Used Avail Use% Mounted on /dev/mapper/vg00-root 9.9G 7.7G 1.8G 82% / tmpfs 2.0G 12K 2.0G 1% /lib/init/rw udev 1.9G 376K 1.9G 1% /dev tmpfs 2.0G 540K 2.0G 1% /dev/shm /dev/mapper/vg00-home 99G 86G 7.5G 93% /home /dev/sda1 228M 65M 151M 31% /boot
See "man df" on your system: different versions of GNU df may have different options available (newer versions tend to have more options than older ones).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-18-2012 04:26 AM
01-18-2012 04:26 AM
Re: bdfmegs for Linux ?
hello,
maybe you know the "df" syntax for following issue :
does LINUX has the same output of "df" like HPUX :
HPUX:
df /filesystem
/ (/dev/vg00/lvol3 ): 2255664 blocks 35485 i-nodes
LINUX:
df -P /filesystem
Filesystem 1024-blocks Used Available Capacity Mounted on
/dev/mapper/vg00-lvol3 10321208 1626252 8170772 17% /
regards