I have made a disk image file of /dev/sda1
partition which has windows xp recovery environment. The file is 20.1 GB stored on a ext4
partition, when I am going to open it with the tool of disks
app to mount disk images, it says the following:Error opening /media/george/Storage/sda1.img
: Value too large for defined data type.
(my language on ubuntu is greek, so I translated it from google translate). What does it means? Is the file too large to be mounted? Does it have any problem because it is made from a manufacturer partition designed for restoring windows xp?
LANG=C
before the actual command in terminal. Example:LANG=C sudo apt-get update
You can also start GUI applications like gparted in English this way:LANG=C gparted-pkexec&
(gparted-pkexec is the executable name, & frees the terminal - it would belong to gparted otherwise and exiting the terminal window would also kill the GUI application) – Byte Commander Feb 15 '15 at 12:33&
, exiting the terminal would still kill the process. If you useLANG=C nohup > /dev/null gparted-pkexec &
, you can then safely close the terminal. – Hitechcomputergeek Oct 08 '15 at 17:27LANG=C setsid gparted-pkexec
. – Hitechcomputergeek Nov 11 '15 at 04:12