On a french environment, the Install.py cannot find any media. This is because the fdisk stdout is not the same in french than in english!
To fix the problem, I change line.500 (approximatively) these lines:
num = 0
from os import environ
myenv = environ
myenv.update({'LANG': 'en_US.UFT-8'})
fdisk = subprocess.Popen(['fdisk', '-l'],
stdout=subprocess.PIPE, env=myenv).stdout.readlines()
mounts = subprocess.Popen(['mount'],
stdout=subprocess.PIPE).stdout.readlines()
This way the fdisk stdout will be always in english so that the script can find media.
Hope this will help.
On a french environment, the Install.py cannot find any media. This is because the fdisk stdout is not the same in french than in english!
To fix the problem, I change line.500 (approximatively) these lines:
This way the fdisk stdout will be always in english so that the script can find media.
Hope this will help.