PDA

View Full Version : HDD install of Knoppix with Beryl



ben222b
03-21-2007, 06:37 PM
Greets, my first post..

I'm looking at Linux with beryl as an alternative to a Vista future... Having tested Sabayon and Knoppix on an old PC (900 kHz AMD athlon, Radeon 9200) I find Knoppix is much much faster, Sabayon 3.26 was so slow as to be almost unusable, even without beryl.

I cannot get Knoppix 5.1.1 to install on the HDD with beryl AND my own user account with password.

The three options from knoppix-installer are:

1. Debian - this does not give me beryl
2. Beginner - also no beryl
3. Knoppix cd on hdd, i get beryl, but I cannot find a way to create my own account with password.

In each case i ran knoppix-installer from a livecd session with beryl enabled.

With option 3, i apt-get upgraded all packages, when I rebooted, I got a login screen, of course the knoppix account is password locked, and my own user created account would not start an x terminal, just dumped me back to the login.

I am currently working in option 2, i can see on the /boot/grub/menu.lst that desktop=beryl is included...


title Debian GNU/Linux, kernel 2.6.19 Default
root (hd0,1)
kernel /boot/vmlinuz root=/dev/hda2 rw ramdisk_size=100000 init=/etc/init lang=us apm=power-off nomce loglevel=0 desktop=beryl vga=791
initrd /boot/initrd.img
savedefault
boot


but beryl is not started on login (I had removed the 'quiet' keyword before 'desktop=beryl")


Any suggestions on the best way to proceed?

Thanks to all, Ben

onemyndseye
03-23-2007, 05:43 AM
Keep working with option 2.... once you get to the KDE desktop run the following command in a Terminal:

` beryl-manager `


You can also add this to your KDE startup.

I've made a script to detect if DRI is working before it loads beryl:

autostart-beryl.sh



#!/bin/bash

DRI=""
DRI=$(glxinfo |grep "direct rendering" |grep -o -i "yes" )
if [ -z $DRI ]; then
echo "No Direct Render suppor found..." >~/.beryl/beryl-xsession.log
else
if [ -f ~/noberyl ]; then
exit 0
else
/usr/bin/beryl-manager >~/.beryl/beryl-xsession.log &
fi
fi


save to $HOME/.kde/Autostart/autostart-beryl.sh

Next time you start KDE you should be greated with a beryl desktop assumingdirect rendering is working for ya :)


Take Care,
-Justin
One Mynds Eye

ben222b
03-23-2007, 12:29 PM
Justin,

Thanks for the tip, indeed typing 'beryl-manager' works a treat.

I added the autostart-beryl.sh to the ~/.kde/Autostart directory, but beryl does not load on logging in.

If I go to the directory and enter 'sh autostart-beryl.sh' then beryl starts up fine, so somehow this script is not being run...

Any thoughts why?

Thanks, Ben

ben222b
03-23-2007, 07:28 PM
I'm really sorry, but I am giving up on this...

Initially beryl-manager works, then it always seems to get broken.

If I try to upgrade packages, using the Kpackage or Synaptic, everything gets messed up and i can no longer log on, grub complains there is no kernel. The update managers just seem to want to delete everything.

I just don't have the patience for this. It's just too painful, the future is Vista after all.

Harry Kuhman
03-23-2007, 07:51 PM
..., then it always seems to get broken.

If I try to upgrade packages,...

I just don't have the patience for this. It's just too painful, the future is Vista after all.
What are you complaining about? This is a known problem with "installing" Knoppix, a Live CD, as opposed to installing a version of Linux intended for hard disk install. There are warnings (http://www.knoppix.net/wiki/HD_Install_Warning_not_to_do_it) all over this site about exactly this. You can certainly choose to say "I'm smart enough to work past all of the known problems and I will decide to do it, just as you might decide to put a Ford engine in a Toyota body. But to then complain, when you clearly should have installed a distro intended for hard disk such as Debian, and bad mouth Linux and say that crap OS from Bill Gates is the future, will not make you friends here. It will just make you look childish.

ben222b
03-23-2007, 10:36 PM
I didn't 'look' for the warnings... Terribly sorry.

This sort of attitude really turns me off linux.

It's just not ready for the desktop, as I found out 5 years ago.

onemyndseye
03-24-2007, 06:26 AM
"...Any thoughts why?...."

yeah... because I forgot a step in my directions :)

you need to ` chmod +x autostart-beryl.sh `. ... make the file executable.... sorry :)


Dont give up - Linux is a wonderfull operating system.. its not difficult, its just a far different way of thinking than you are used to. Its can be alot fo absorb at first but once you get it ....

I have to argue that Linux is quite ready for the Desktop.. . more so when you compare to 5 years ago ... things have come quite along way since then.


Also...what video card do you have?... could be as easy as installing an extra driver ... *shrug*


Take care,
-Justin

hal8000
03-24-2007, 08:50 PM
I didn't 'look' for the warnings... Terribly sorry.

This sort of attitude really turns me off linux.

It's just not ready for the desktop, as I found out 5 years ago.


Thats your point of view, not everyone else's.

The first 6 months were hardest for me after that things were much easier.
If you just want to click around then MS is the best system for you.

You are right about Beryl though some applications ( Limewire) do not work with it, but synaptic works ok with beryl on my 5.1.1 install.
I just load beryl-manager on startup, and then invoke beryl from the beryl icon in the kde panel, with select window manager.

To start just beryl manager I create a symbolic link


ln -s /usr/bin/beryl-manager ~/.kde/Autostart

(as ordinary user).
This way I have control over Beryl and can start apps that work with, or dont work with Beryl.
Hope that helps.