Comment 2 for bug 927117

Revision history for this message
Kartik Singhal (kartiksinghal) wrote :

The following was the traceback:

Traceback (most recent call last):
  File "/usr/bin/ntfs-config", line 102, in <module>
    main(args, opts)
  File "/usr/bin/ntfs-config", line 75, in main
    app = NtfsConfig()
  File "/usr/lib64/python2.7/site-packages/NtfsConfig/NtfsConfig.py", line 56, in __init__
    os.mkdir(HAL_CONFIG_DIR)
OSError: [Errno 2] No such file or directory: '/etc/hal/fdi/policy'

Apparently commenting out the following two lines from NtfsConfig.py file makes it work fine:

55 if not os.path.exists(HAL_CONFIG_DIR) :
56 os.mkdir(HAL_CONFIG_DIR)

Problem solved for now. :)