LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 12-29-2003, 06:25 PM   #1
ixp
LQ Newbie
 
Registered: Dec 2003
Posts: 6

Rep: Reputation: 0
lots of quick questions, help please (kernel, installing stuff, etc)


im a newbie at this =p

i installed mandrake 9.2 the other day, dual booting with win2k3, works fine, LILO works, etc. sound is however, too soft/low, and i dont know how to increase it. sound is based off an ac'97 codec from the kt133 chipset line. its sooo soft =\.

how do i update the 2.4 kernel to 2.6? without all that command line stuff, or is that the only way.

i tried to update java, but it ends in -rpm.bin, so i dont know what to do?

how do i update kde to 3.1.4? i downloaded the..source? i think, should i have gotten the rpms instead and just upgrade it?

how do i install stuff? cause i have no idea =\

dunno command line commands either, ahhh
 
Old 12-29-2003, 07:01 PM   #2
darin3200
LQ Guru
 
Registered: Dec 2002
Distribution: Gentoo!
Posts: 1,153

Rep: Reputation: 45
1.try "kmixer" and see if you can raise the volume
2.Unless something doesn't work you really don't need to upgrade your kernel, learn to install programs first.
3. To install java just type
sh file-name-of-java.rpm.bin
this is get you the java rpm, I will address how to install programs at the end of this post
4.Again, 9.2 is pretty recent, unless there is a new feature you need I wouldn't bother replacing KDE, it would take a lot of time and effort.
5. From source code read this
Also use mandrake package managment tools under configuration.
For rpms, to install type
rpm -ivh filename
as root i=install v=verbose h=hash, or progress bar

Also on the learning commands
http://www.onlamp.com/linux/cmd/
http://www.unixguide.net/linux/linuxshortcuts.shtml

Last edited by darin3200; 12-29-2003 at 07:11 PM.
 
Old 12-29-2003, 07:25 PM   #3
ixp
LQ Newbie
 
Registered: Dec 2003
Posts: 6

Original Poster
Rep: Reputation: 0
oh and another question, does the 2.4 kernel support dynamic ntfs drives? cause it can't read mine =|
and how do i get command lines for java to work? i installed it, though none of the commands work?

Last edited by ixp; 12-29-2003 at 08:00 PM.
 
Old 12-29-2003, 09:09 PM   #4
darin3200
LQ Guru
 
Registered: Dec 2002
Distribution: Gentoo!
Posts: 1,153

Rep: Reputation: 45
I'm not sure what an dynamic ntfs drive is, what have you done to try to read it? About the jave, first you need to find where you java programs are located. Start by going into /usr/java and find the next directory that java would be in. After you have gone into that there should be a bin file. Now your's might be different, but the path to my bin is
/usr/java/j2sdk1.4.2/bin or you can find it with "locate java"
Now type
export PATH=$PATH:/usr/java/j2sdk1.4.2/bin (with your own path to bin) and see if you can access the commands.
 
Old 12-29-2003, 09:22 PM   #5
ixp
LQ Newbie
 
Registered: Dec 2003
Posts: 6

Original Poster
Rep: Reputation: 0
oh, a dynamic ntfs drive has simple volumes spanned volumes striped volumes mirrored volumes RAID-5 volumes or something like that, im guessing software raid? or something to that extent?
 
Old 12-29-2003, 10:13 PM   #6
darin3200
LQ Guru
 
Registered: Dec 2002
Distribution: Gentoo!
Posts: 1,153

Rep: Reputation: 45
have you tried mounting those partitions yet?
 
Old 12-29-2003, 10:29 PM   #7
ixp
LQ Newbie
 
Registered: Dec 2003
Posts: 6

Original Poster
Rep: Reputation: 0
oh, it does mount, but gives me a blank drive, it reads the other drive, the basic ntfs one
 
Old 12-30-2003, 02:44 PM   #8
ixp
LQ Newbie
 
Registered: Dec 2003
Posts: 6

Original Poster
Rep: Reputation: 0
mm the java export doesnt work
 
Old 12-30-2003, 03:15 PM   #9
darin3200
LQ Guru
 
Registered: Dec 2002
Distribution: Gentoo!
Posts: 1,153

Rep: Reputation: 45
I'm afraid I know little about raid, sorry. But I think I know how to fix the java problem. As root go and open your /etc/profile. Here is mine from mandrake 9.2 set up for java
Code:
# /etc/profile -*- Mode: shell-script -*- 
# (c) MandrakeSoft, Chmouel Boudjnah <chmouel@mandrakesoft.com>

loginsh=1
PATH=$PATH:/usr/java/j2sdk1.4.2_01/bin
# Users generally won't see annoyng core files
[ "$UID" = "0" ] && ulimit -S -c 1000000 > /dev/null 2>&1

if ! echo ${PATH} |grep -q /usr/X11R6/bin ; then
    PATH="$PATH:/usr/X11R6/bin"
fi

if [ "$UID" -ge 500 ] && ! echo ${PATH} |grep -q /usr/games ; then
    export PATH=$PATH:/usr/games
fi

umask 022

USER=`id -un`
LOGNAME=$USER
MAIL="/var/spool/mail/$USER"
HISTCONTROL=ignoredups
HOSTNAME=`/bin/hostname`
HISTSIZE=1000

if [ -z "$INPUTRC" -a ! -f "$HOME/.inputrc" ]; then
    INPUTRC=/etc/inputrc
fi

# some old programs still use it (eg: "man"), and it is also
# required for level1 compliance for LI18NUX2000
NLSPATH=/usr/share/locale/%l/%N

export PATH PS1 USER LOGNAME MAIL HOSTNAME INPUTRC NLSPATH
export HISTCONTROL HISTSIZE 

for i in /etc/profile.d/*.sh ; do
	if [ -x $i ]; then
		. $i
	fi
done

unset i
As you can see in the red I added that line with the path to the java programs.
 
Old 12-30-2003, 07:42 PM   #10
ixp
LQ Newbie
 
Registered: Dec 2003
Posts: 6

Original Poster
Rep: Reputation: 0
woohoo java works now =) soo fast running the bluej ide compared to using it on windows
another quick question, open office..doesn't load? the splash screen only loads half way, and then nothing shows up, running open office 1.1
 
Old 12-30-2003, 08:14 PM   #11
darin3200
LQ Guru
 
Registered: Dec 2002
Distribution: Gentoo!
Posts: 1,153

Rep: Reputation: 45
Have you tried starting open office and given it a while. Sometimes it takes very long to load the first time.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
kernel upgrade 2.4 to 2.6 (a couple of quick questions..) spamhippy Slackware 2 11-12-2005 12:10 AM
When installing new stuff in suse 9.1, do you uninstall old stuff first? randon SUSE / openSUSE 1 12-25-2004 04:37 PM
2 quick questions (kernel and grub) TracerReborn Linux - Newbie 1 11-12-2004 02:07 AM
A quick q: how to view chmod stuff? orange400 Linux - General 2 04-23-2004 05:44 AM
Lots of questions joshbates Linux - Newbie 0 06-09-2003 03:19 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 11:22 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration