Page 1 of 2 12 LastLast
Results 1 to 10 of 11

Thread: What language is this?

  1. #1
    Member registered user
    Join Date
    Mar 2003
    Posts
    39

    What language is this?

    Hi I have a weird problem, for some reason I klicked on a wrong icon and now all of my root directory// applications and files are arranged in a language I don't understand. I have no idea what this language is and would very much like to reset it to English GB.

    Also the live CD was spectacular, it detected all my hardware and set it up without any difficulty. But the problem is that now it won't auto mount my CD drives and my hardrives as the CD did. Further when I mount my DVD-r drive, or my CD Writer drive, I can only mount one CD drive at a time as there doesn't appear to be a device listing in /dev for a second CD rom drive. Is there any way to get it to add an entry to /dev that will allow both my CDRW drive and my DVD-R drive to be mounted at the same time?

    Further, the CD version of knoppix doesn't appear to allow me to save anything I download or try to move from one directory to another (Ihave 460GB divided up over several partitions, one of which is a 30 GB fat32 partition set up to enable exchanging files with an NTFS drive). Do I need to be a super user, or root to move files accross directories and if so what is the su password?

    Additionally Open Office appears to be the German version, which once more is not very helpful/useful to me. Is there a way I can change this? The spell checkers in all the office applications seem to be in another language too, even in ordinary accounts which I haven't converted accidentally to whatever langage I selected.

    Lastly I am very interested to learn about aptget - and how to use it to get specific pagages. Say for example I wanted the latest version of Xine? What is the command for starting aptget and how would I write the command to aquire it? Do I need to give the version name and version number of the application I'm interested in?

    All in all Knoppix rocks. But I wish it was able to set up my hardware and automount all my drives etc in the same way the CD version does. There ought to also be better support for HDD installs, with as people who try the Cd version will undoubtedly want to give the real thing a go. Also I wish there was better international support as it is too centred on German and east European users. Apart from that, its great!

    Q

  2. #2
    Senior Member registered user
    Join Date
    Mar 2003
    Location
    colorado springs, colorado
    Posts
    1,933
    If you search these forums you'll find answers to all of your questions. They are quite common.

  3. #3
    Member registered user
    Join Date
    Mar 2003
    Posts
    39
    Dude thanks, I did search the forums before posting, but either the answers I found to these questions were non specific, or when I tried them they didn't work.,

    Anyway all I was hoping for was a few friendly pointers... I know what the search button is for, but unfortunately it hasn't proved all that helpful.

    Q

  4. #4
    Member registered user
    Join Date
    Mar 2003
    Posts
    39
    My biggest headache right now is how do Irevert my root account back to english - and how do I make UK english my system wide setting? If I can fix this at least it would be a start...

    Q

  5. #5
    Senior Member registered user
    Join Date
    Mar 2003
    Location
    colorado springs, colorado
    Posts
    1,933

    Re: What language is this?

    Quote Originally Posted by raid517
    Hi I have a weird problem, for some reason I klicked on a wrong icon and now all of my root directory// applications and files are arranged in a language I don't understand. I have no idea what this language is and would very much like to reset it to English GB.
    In my following explaination I am not attempting to being an ass, I simply do not know how much of your desktop is in a foreign language. I have managed to change mine to Czechoslovokian (sp?) twice.

    **There is a language button in a very obscure place and perhaps it will fix this problem.**

    Open the Control center(On taskbar w/ monitor icon)>

    maximize the window-look in left hand column
    System(on my system next to last expandable menu)>LoginManager(look closely- it's 3D- two people standing)>

    Now focus to lower right hand of entire window

    Administrator Mode(button on lower right corner of full screen)>enter your password>

    long low/center button>find en_us

  6. #6
    Senior Member registered user
    Join Date
    Mar 2003
    Location
    colorado springs, colorado
    Posts
    1,933
    DOH! - don't forget to hit Apply. (it should remind you).

  7. #7
    Member registered user
    Join Date
    Mar 2003
    Posts
    39
    I'll have a look at that... But as its in another language I don't know if i will find it. Also I want a sytem wide UK english setting, the US english setting causes to many problems with my keyboard etc...

    Your assistance is very welcome.

    Q

  8. #8
    Member registered user
    Join Date
    Mar 2003
    Posts
    39
    I'll give it a few more days... If I can't figure it out by then I'll go back to playing with Gentoo.... Its not as easy to set up, but portage kicks some serious butt and is every bit as powerful (if not more so) than aptget.

    Mind you knoppix is Debian - and that's certainly always a good thing...

    Q

  9. #9
    Senior Member registered user
    Join Date
    Mar 2003
    Location
    colorado springs, colorado
    Posts
    1,933
    Unless the layout changes I gave step by step instructions. Boot the CD, have a look while it's in English and learn your way around the control center And if you want UK lang then choose it instead.

  10. #10
    Senior Member registered user
    Join Date
    Jan 2003
    Location
    Podunk, Idaho, USA
    Posts
    470

    apt-get and dpkg commands I use:

    raid517,

    As far as your KDE control center problem, I have three versions of KDE and the control center is slightly different in all three, so richenbacherus' idea of booting up your cd and looking at the layout is probably the best idea.

    As far as apt-get and dpkg, the commands I use are:

    apt-get update #to update the package list using the deb URI's in /etc/apt/sources.list

    apt-get upgrade #to upgrade installed packages

    apt-get dist-upgrade #to upgrade installed packages and libraries with a version change

    apt-cache search #usually used piped to grep ex:
    apt-cache search | grep packagename #if you used xfonts for the packagename it would list all packages with xfonts in name or description

    apt-get install packagename #install package name (use name from apt-cache output not filename downloaded ex: mozilla not mozilla-1.2.1-0woody1-i386.deb)

    apt-get -t testing install packagename #install package from testing depository (or -t stable or -t unstable) used if you have stable, testing, and unstable sources listed (also look into apt-pinning)

    apt-get remove packagename ...

    dpkg --force-overwrite -i packagename #install package using dpkg when apt-get fails because of dependency errors because a file is listed in more than one package (such as going from kde3.0 to 3.1) Note: using this you have to specify the filename and either be in the directory where the file is or use full path, apt-get save downloaded files in /var/cache/apt/archives.

    dpkg --configure -a #will make sure all packages are configured after installation

    dpkg -l #will list all installed packages, usually piped to grep if you are looking for a specific package, note packagenames are truncated by default so you may not see the entire packagename

    NOTE:
    if you get stuck in an apt-get dist-upgrade problem, ie. apt-get dist-upgrade errors out, you will then have to use dpkg --force-overwrite on the packages that are causing problems, once they are installed you then have to go back and run apt-get dist-upgrade again, if it errors out again use dpkg --force-overwrite on the packages that are causing problems, then run apt-get dist-upgrade, repeat cycle until finished. This is NOT needed much, mainly for things like KDE, maybe gnome, etc., multiple package stuff, where a file was in one package in a previous release and now has been moved to a different package in the new release or two different packages contain the same file.

    HTH

    rock

Page 1 of 2 12 LastLast

Similar Threads

  1. keyboard language different from console language?
    By fingers99 in forum Hdd Install / Debian / Apt
    Replies: 2
    Last Post: 03-08-2005, 12:46 AM
  2. Language Settings
    By jodef in forum Hdd Install / Debian / Apt
    Replies: 4
    Last Post: 07-21-2004, 02:53 AM
  3. Language!
    By allenf in forum General Support
    Replies: 1
    Last Post: 01-08-2004, 10:27 PM
  4. default language
    By wk in forum Customising & Remastering
    Replies: 1
    Last Post: 09-06-2003, 06:44 PM
  5. Language help....
    By dowser in forum General Support
    Replies: 4
    Last Post: 12-02-2002, 01:25 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


ASUS H110M-R Motherboard Intel 6th/7th Gen LGA1151 DDR4 Micro-ATX i/o shield picture

ASUS H110M-R Motherboard Intel 6th/7th Gen LGA1151 DDR4 Micro-ATX i/o shield

$42.00



***NEW*** BCM RX67Q mATX Gaming Motherboard Combo | Intel i5-3470 | 16GB DDR3 picture

***NEW*** BCM RX67Q mATX Gaming Motherboard Combo | Intel i5-3470 | 16GB DDR3

$49.77



Micro ATX Desktop Motherboard ASUS H110M-C LGA 1151 picture

Micro ATX Desktop Motherboard ASUS H110M-C LGA 1151

$31.95



ASUS Prime Z390-A LGA 1151 Intel Z390 SATA USB 3.1 ATX Motherboard NO I/O picture

ASUS Prime Z390-A LGA 1151 Intel Z390 SATA USB 3.1 ATX Motherboard NO I/O

$99.00



Gigabyte AMD B550 UD AC Gaming Motherboard - AMD B550 Chipset - AM4 Socket - AMD picture

Gigabyte AMD B550 UD AC Gaming Motherboard - AMD B550 Chipset - AM4 Socket - AMD

$89.99



Asrock Z390 Phantom Gaming 4S/AC Wifi 8th/9th Gen Intel 1151 Motherboard Bulk picture

Asrock Z390 Phantom Gaming 4S/AC Wifi 8th/9th Gen Intel 1151 Motherboard Bulk

$47.35



MSI B450M PRO-VDH MAX AM4 AMD B450 USB3.2 Micro-ATX Motherboard picture

MSI B450M PRO-VDH MAX AM4 AMD B450 USB3.2 Micro-ATX Motherboard

$67.99



ASUS H110M-C LGA 1151 Micro ATX Motherboard 8GB RAM No CPU picture

ASUS H110M-C LGA 1151 Micro ATX Motherboard 8GB RAM No CPU

$39.99



ASUS PRIME Z690-P WIFI D4 ATX Motherboard Intel LGA1700 DDR4 HDMI picture

ASUS PRIME Z690-P WIFI D4 ATX Motherboard Intel LGA1700 DDR4 HDMI

$99.99



GIGABYTE MB10-Datto Motherboard Xeon D-1521- SR2DF 2.40 GHz- Open Box picture

GIGABYTE MB10-Datto Motherboard Xeon D-1521- SR2DF 2.40 GHz- Open Box

$121.50