diff options
author | Jens Weber <jens@tuxane.com> | 2012-02-12 17:17:18 -0600 |
---|---|---|
committer | Niels Horn <niels.horn@slackbuilds.org> | 2012-02-18 09:12:29 -0200 |
commit | 3a39822712240010fd4bb25ccbf58c06117cad73 (patch) | |
tree | 9102781e4d346c9bb14046db93a7166fd067d8f2 /system/unetbootin/README.issues | |
parent | e0f08eb4d803cd4f2cddfea23ef5cc63fe8feee8 (diff) |
system/unetbootin: Added (create bootable Live USB drives)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'system/unetbootin/README.issues')
-rw-r--r-- | system/unetbootin/README.issues | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/system/unetbootin/README.issues b/system/unetbootin/README.issues new file mode 100644 index 0000000000000..f724740bf379d --- /dev/null +++ b/system/unetbootin/README.issues @@ -0,0 +1,25 @@ +Unetbootin should (or even needs to) be invoked from a root +login prompt as it needs access to drive devices. +Unless you have modified the default PATH inheritance, sudo +won't work properly (at least syslinux will not be found). + +It sometimes reacts in a strange way when it comes to language settings. +When the detection fails, there is a good chance that it will display +in (taiwanese) chinese, as it seems to use the last language file it +can find (which is unetbootin_zh_TW.qm). + +If unetbootin does not respect your LANG settings, especially when +invoked from the menu of an user account with kdesu, there are two ways +to change it's behaviour: + +1. Open /usr/share/applications/unetbootin.desktop and change the Exec + entry to something like this: + + Exec=/usr/bin/unetbootin lang=en + + The available language files are in /usr/share/applications/unetbootin. + +2. Open a terminal and start unetbootin like this: + + su -c '/usr/bin/unetbootin lang=de' + |