I accidently clicked on 'remove topic' instead of reply. Damn. I have copied and pasted the original thead below.
--------------------------------------------------------------------------
Install problems: be-latin1 kmap and xorg config
« on: June 05, 2010, 05:29:13 AM »
Hi everyone,
I have to installed TC onto an old Dell notebook for my wife. First I want to test from the live CD that all works well. I cannot do a full install onto the 2Gb disc because it is full of data (puppylinux) and her files.
The keyboard is a Belgian layout be-latin1.
1) Xorg
I installed xorg, kmap and graphics. Shutdown X to the console and tried a startx. It did nothing a min, and then returned to the prompt. Nothing was found on any Cntl-Alt-F except F2 which gave a black screen, and F1 which is the console. I tried to mv /etc/X11/xorg.conf.VESA to /etc/X11/xorg.conf but its a read only filesystem. I tried the same in the loop mount point but same error.
2) loadkmap.
This command: loadkmap /usr/share/...../be-latin1.kmap sat there. Now after 25 mins it has not returned to the prompt. My only option is to reboot.
Any hope for this, or is it a lost cause?
Best regards,
S.
Report to moderator 82.173.139.52
Juanito
Administrator
Offline
Posts: 2538
Re: Install problems: be-latin1 kmap and xorg config
« Reply #1 on: June 05, 2010, 05:40:46 AM »
I'm guessing an old dell laptop has an intel graphics chipset - if so, these usually do not want to work with Xorg "confless", which means you'll need a suitable /etc/X11/xorg.conf file - you can usually find something usable by googling on xorg.conf and the name of your laptop.
Otherwise, you could try with Xvesa and 915resolution instead of using Xorg.
Report to moderator Logged
azertyhell
Newbie
Online
Posts: 4
Re: Install problems: be-latin1 kmap and xorg config
« Reply #2 on: June 05, 2010, 06:11:31 AM »
Hi,
cheers for the note about xorg. Its a Dell CPx from 1996 with an ATI 16Mb chip on it. Cannot remember the exact graphic card. Its max res is 1024x768x16. It works ok with xVesa, but playback of youtube (or flash in general) is impossible. Just choppy video with CPU usage at about 90%. Dragging a window around causes a bit of excessive CPU usage. With PuppyLinux playback is quite acceptable, but it uses Xorg. (Notebook has a Pentium2 / 600Mhz CPU and 384Mb RAM)
However I did delete swap on the notebook and try to install TC into there, but hit a brick wall because the example for grub is menu.lst.
Sadly, I installed UBuntu Remix onto it some months ago to dual boot with puppy. Ubuntu rewrote the grub entries in its partition to be in grub2 format. Due to disc space shortage, and the fact that UbtunRemix could not run well on the PC, I rm'ed everything in the Ubuntu parition except /boot thinking that I would not have to worry about it. Now I cannot create the grub entry, because I think that grub2 thinks people are too stupid to vi menu.lst.
Has anyone got an example I can copy into the grub.cfg for tiny core?
The old menu.lst format was :-
title Tiny Core
root (hd0,0)
kernel /boot/bzImage quiet
initrd /boot/tinycore.gz
I just want a quick hack to boot the system and test that it works better from the hard disc than from the CD. Perhaps I can then get the keymaps to load and not hang the system.
S.
« Last Edit: June 05, 2010, 06:16:31 AM by azertyhell » Report to moderator 82.173.139.52
batnas
Jr. Member
Online
Posts: 66
Re: Install problems: be-latin1 kmap and xorg config
« Reply #3 on: June 05, 2010, 06:33:57 AM »
And for the kmap you need a <
loadkmap < /usr/share/...../be-latin1.kmap
\\Batnas
Report to moderator Logged
azertyhell
Newbie
Online
Posts: 4
Re: Install problems: be-latin1 kmap and xorg config
« Reply #4 on: June 05, 2010, 10:04:18 AM »
Quote from: azertyhell on June 05, 2010, 06:11:31 AM
, because I think that grub2 thinks people are too stupid to vi menu.lst.
The irony is that I am too silly to work out a grub.cfg
Thank-you for the missing <
Report to moderator 82.173.139.52
^thehatsrule^
Administrator
Offline
Posts: 1417
Re: Install problems: be-latin1 kmap and xorg config
« Reply #5 on: June 05, 2010, 01:25:26 PM »
Quote
I tried to mv /etc/X11/xorg.conf.VESA to /etc/X11/xorg.conf but its a read only filesystem. I tried the same in the loop mount point but same error.
That error should only occur on the loop mount point, not on the ramdisk.
The simplest way to get things working is to try confless. If a xorg.conf is required, try using -configure to generate one. See the extension's .info for more details.
If you prefer to do a manual edit, you could try the ati or r128/mach64 video drivers (guessed these) or look up a config as previously suggested.
Report to moderator Logged
maro
Sr. Member
Offline
Posts: 316
Re: Install problems: be-latin1 kmap and xorg config
« Reply #6 on: June 05, 2010, 05:57:40 PM »
If your are still struggling with 'menu.lst' (i.e. for legacy GRUB) vs. 'grub.cfg' (i.e. for current GRUB2) I might have a solution. In your example I believe that
menuentry "Tiny Core" {
set root=(hd0,1)
linux /boot/bzImage quiet
initrd /boot/tinycore.gz
}
should be a suitable GRUB2 stanza.
I found the "official" GRUB2 documentation to be rather incomplete, but it contains one page which attempts a comparison between the available commands for either version. Unfortunately the links for the individual commands on that page only go into the legacy GRUB documentation but not into the current version. There are several distribution specific GRUB2 forum sections around, (e.g. for Ubuntu) but all this does not make up for a lack of a good reference documentation. One tutorial that google ranks highly might be worth a look, but a lot of searching could still be required to solve even a simple issue.
Anyway in your case the two really important changes are:
the 'kernel' command is now replaced by 'linux', and
partition counting starts with 1 instead of 0, hence '/dev/hda1' should now be '(hd0,1)'
Report to moderator Logged
azertyhell
Newbie
Online
Posts: 4
Re: Install problems: be-latin1 kmap and xorg config
« Reply #7 on: Today at 05:23:43 AM »
I thank-you for the grub2 bit. In fact, what I did was run grub and setup grub from scratch. Finally, picked up the courage - I am always carefuller when messing with my wife's PC than mine. No explanation required However the example grub2 you have written is great for me to know.
Now am off to try xorg without xorg.conf, and then more than likely a -configure.