- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: Linux fdisk output says invalid partition tabl...
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
Discussions
Discussions
Discussions
Forums
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
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
тАО10-22-2007 07:56 AM
тАО10-22-2007 07:56 AM
Linux fdisk output says invalid partition table.
#fdisk -l /dev/sdc
Disk /dev/sdc: 299.9 GB, 299999690752 bytes
128 heads, 32 sectors/track, 143051 cylinders
Units = cylinders of 4096 * 512 = 2097152 bytes
Disk /dev/sdc doesn't contain a valid partition table
How to fix it and get rid of this message.
The disk is already in use and has lots of data on it.
Thanks,
Gulam.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-22-2007 08:22 AM
тАО10-22-2007 08:22 AM
Re: Linux fdisk output says invalid partition table.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-22-2007 08:41 AM
тАО10-22-2007 08:41 AM
Re: Linux fdisk output says invalid partition table.
fdisk /dev/sdc
Put a partition on the thing. Maybe even a filesystem after that.
Sometimes false messages like this can be caused by dual path if the disk is fiber and there are two fiber paths to the disk.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-22-2007 08:52 AM
тАО10-22-2007 08:52 AM
Re: Linux fdisk output says invalid partition table.
Thanks,
Gulam.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-22-2007 09:09 AM
тАО10-22-2007 09:09 AM
Re: Linux fdisk output says invalid partition table.
Some USB memory sticks or SCSI LUN's presented by some SAN's do not have partition tables, they are just raw filesystems.
Using the 'file -s /dev/sdc' command, you can tell if there's an existing filesystem or a boot sector a partition table can live in.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-22-2007 11:18 AM
тАО10-22-2007 11:18 AM
Re: Linux fdisk output says invalid partition table.
[root@wolfdev04 ~]# file -s /dev/sdc
/dev/sdc: data
Thanks,
Gulam.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-22-2007 08:26 PM
тАО10-22-2007 08:26 PM
Re: Linux fdisk output says invalid partition table.
I think my problem has been caused by the instability of the Firewire drivers, and if your problem is intermittent, you could be in a similar situation.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-24-2007 11:05 PM
тАО10-24-2007 11:05 PM
Re: Linux fdisk output says invalid partition table.
Try the followings (example):
# parted /dev/sdc
GNU Parted 1.8.1
Using /dev/sda
Welcome to GNU Parted! Type 'help' to view a list of commands.
(parted) print
Model: xxxxxxx (scsi)
Disk /dev/sdc: 9999MB
Sector size (logical/physical): 512B/512B
Partition Table: msdos
Number Start End Size Type File system Flags
1 32.3kB 271MB 271MB primary ext3 boot
2 271MB 8324MB 8053MB primary ext3
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-01-2007 02:21 AM
тАО11-01-2007 02:21 AM
Re: Linux fdisk output says invalid partition table.
fdisk /dev/sdc, put a partition on it, then recreate your filesystem on /dev/sdc1 and restore. Otherwise, you'll have to live with the error message.