[parted-devel] libparted 3.1 doesn't show any devices

Aleksey Yakovlev aleksey.yakovlev at gmail.com
Wed Feb 12 22:25:47 UTC 2014


Hi - I'm new to the libparted. I've built it (Ver 3.1) on Xubuntu 3.11 VM
(running at MacBook OS X 10.9.1) and tried to request a list of devices:

#include <iostream>
#include "parted/parted.h"

using std::cout;
using std::endl;

int main()
{
  unsigned count = 0;
  PedDevice* pd = NULL;
  ped_device_probe_all();
  while (true)
  {
    pd = ped_device_get_next(pd);
    if (pd != NULL)
    {
      cout << "# " << count << endl;
      // ......
      ++count;
    }
    else
    {
      break;
    }
  }
  cout << "Found: " << count << endl;
}

However, it doesn't see any devices, the program returns "Found: 0"

Please help,
Thanks,
Aleksey
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.alioth.debian.org/pipermail/parted-devel/attachments/20140212/8eb09808/attachment.html>


More information about the parted-devel mailing list