LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 03-21-2007, 08:25 AM   #1
nardz
Member
 
Registered: Feb 2007
Distribution: Kubuntu
Posts: 60

Rep: Reputation: 15
Multiple linux-newbie queries


Hi everyone,

After trialling linux on my pc that i hardly ever use, ive now gone and made the jump to install it on my laptop that i use religiously (dual booting at least until i get over my teething problems)

Theres quite a few questions i have though, that i'm sure many would be able to provide a simple answer. I figured instead of flooding this board with threads, i'd keep em all together. Just quote the part that contains the question you're answering

Thanks again (i found alot of help setting up a few things last time, which is why im back)

I'm using kubuntu so everyone knows.....

Code:
1. Kaffeine doesnt play wmv/avi's (in fact i dont know what it does actually play) - how do i fix this? do i need to install codecs or something? if so where do i find these? i've tried updating xine but it didnt make a difference (in fact i'm not sure my installation was effective at all.

update - it now plays everything except for mpg
Code:
2. P2P program? whats a good p2p program to replace limewire from windows?

Solved this one. ended up getting limewire working. Thanks.
[/I] 3. Msn messenger? Kopete is alright, but is there any msn messenger alternative that people would recommend?

4. Dual booting - accessing linux drives from windows. Atm i cant... this is probably abit more complicated, but can anyone get me steered in the right direction? (i can access windows drives from linux thanks to help in another thread on this forum)

5. Currently using wireless assistant Lan Manager 0.5.5 to connect to my home network: a) is there any way of making it start and connect automatically? b) is there any better alternative that has more options? although i havent tried yet, i dont think it will work on my university network as their settings are much more detailed than those on my home network (involves entering "credentials - username/pass)

6. Any torrent programs better than KTorrent? (not that ktorrent is bad...)

7. laptop mouse/touch pad - in windows synaptic driver there is an option to allow the auto scroll to "coast" (i think thats wat they called it - automatically keep scrolling when i reach the bottom edge of the touch pad whilst scrolling). is there anyway to do this in linux?


at this stage thats pretty much it.... thanks for taking the time to read

Last edited by nardz; 03-29-2007 at 09:36 AM.
 
Old 03-21-2007, 08:31 AM   #2
avallach
Member
 
Registered: Sep 2006
Location: Silesia
Distribution: Debian GNU/Linux 4.0, ArchLinux, OpenBSD
Posts: 190
Blog Entries: 2

Rep: Reputation: 31
1. Install codecs from mplayer.hq webpage. In most distros there are in w32codecs package you can easily install
2. Maybe gtk-gnutella ? AFAIR there is Limewire for Linux
6. Azureus maybe ?

And remember about Google !
 
Old 03-21-2007, 08:51 AM   #3
pixellany
LQ Veteran
 
Registered: Nov 2005
Location: Annapolis, MD
Distribution: Mint
Posts: 17,809

Rep: Reputation: 743Reputation: 743Reputation: 743Reputation: 743Reputation: 743Reputation: 743Reputation: 743
4. I use ext2fsd to access Linux partitions from Win2K---works perfectly. (It is a driver that installs on Windows and causes all ext2/3 partitions to display as if they were regular Windows ones.)
 
Old 03-21-2007, 09:16 AM   #4
VincentB
Member
 
Registered: Jun 2003
Location: Brussels, Belgium
Distribution: Ubuntu 6.10
Posts: 139

Rep: Reputation: 15
Hi,

1- cfr previous answer. Keffeine can play a lot of format. You indeed have to install mplayer which usually solve the problem;
2- I have installed amule which works quite well;
3 - I like Kopete which is, to my opinion, the best so far;
6 - azureus is very nice with a very user-friendly GUI;
 
Old 03-27-2007, 11:54 AM   #5
nardz
Member
 
Registered: Feb 2007
Distribution: Kubuntu
Posts: 60

Original Poster
Rep: Reputation: 15
Quote:
1. Kaffeine doesnt play wmv/avi's (in fact i dont know what it does actually play) - how do i fix this? do i need to install codecs or something? if so where do i find these? i've tried updating xine but it didnt make a difference (in fact i'm not sure my installation was effective at all.

almost solved this one. got it playing everything except mpg (plays first 2 seconds then crashes with a signal 11?
 
Old 03-27-2007, 04:53 PM   #6
tredegar
LQ 5k Club
 
Registered: May 2003
Location: London, UK
Distribution: Fedora38
Posts: 6,148

Rep: Reputation: 435Reputation: 435Reputation: 435Reputation: 435Reputation: 435
5]-

I have wireless on my kubuntu laptop. It works brilliantly: It connects at boot, or even when I just turn my little wireless switch to "on". Not quite sure how this works (udev I suspect), but it is good!

The solution for me was to make by /etc/network/interfaces file look like this:

Code:
# The next four lines are vital. Do not mess with them, or you linux will be badly "broken"!
auto lo
iface lo inet loopback
address 127.0.0.1
netmask 255.0.0.0

#  eth1 is my wireless interface, change this if yours is different.
#
#  You'll also have to change the b'cast, address, netmask and gateway 
#  (LAN, not internet, IP of your modem/router)
#  to match your network configuration. Wireless assistant will give you clues as to what
#  you are currently using. ifconfig (having established a conection with Wireless assistant) will
#  also help you work out what these settings should be for your setup. Maybe 198.162.something

auto eth1
iface eth1 inet static
broadcast 10.255.255.255
address 10.0.0.8
netmask 255.0.0.0
gateway 10.0.0.2
wpa-passphrase mysecretpassphrase
wpa-ssid ssid_of_my_AP
wireless-channel 11
Once you have edited the file do:
sudo ifdown eth1
sudo ifup eth1


And you should be connected. Obviuosly, do not choose eth1 if that is not your wireless interface.

I can't help thinking that this thread might get quickly become completely chaotic - maybe in future, it's better to post different Qs as different threads. Then we can eventually say "Sorted, & closed".
 
Old 03-29-2007, 09:22 AM   #7
nardz
Member
 
Registered: Feb 2007
Distribution: Kubuntu
Posts: 60

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by tredegar
5]-

I have wireless on my kubuntu laptop. It works brilliantly: It connects at boot, or even when I just turn my little wireless switch to "on". Not quite sure how this works (udev I suspect), but it is good!

The solution for me was to make by /etc/network/interfaces file look like this:

Code:
# The next four lines are vital. Do not mess with them, or you linux will be badly "broken"!
auto lo
iface lo inet loopback
address 127.0.0.1
netmask 255.0.0.0

#  eth1 is my wireless interface, change this if yours is different.
#
#  You'll also have to change the b'cast, address, netmask and gateway 
#  (LAN, not internet, IP of your modem/router)
#  to match your network configuration. Wireless assistant will give you clues as to what
#  you are currently using. ifconfig (having established a conection with Wireless assistant) will
#  also help you work out what these settings should be for your setup. Maybe 198.162.something

auto eth1
iface eth1 inet static
broadcast 10.255.255.255
address 10.0.0.8
netmask 255.0.0.0
gateway 10.0.0.2
wpa-passphrase mysecretpassphrase
wpa-ssid ssid_of_my_AP
wireless-channel 11
Once you have edited the file do:
sudo ifdown eth1
sudo ifup eth1


And you should be connected. Obviuosly, do not choose eth1 if that is not your wireless interface.

I can't help thinking that this thread might get quickly become completely chaotic - maybe in future, it's better to post different Qs as different threads. Then we can eventually say "Sorted, & closed".

thanks - thats helpful - what do i do for the address part if i use dhcp?

as for the thread getting messy i dont mind so much - lol as long as it helps me - ill be crossing out the answers that i've solved as i go along...

and btw, one thing with my wireless config atm is that i had to mount a samba share in order to be able to play the files in amarok. cause the wireless network isnt on when linux is booted, it doesnt auto mount (i do have it in fstab). will this be fixed if i get my wireless going the way uve suggested?
 
Old 03-29-2007, 09:26 AM   #8
phantom_cyph
Senior Member
 
Registered: Feb 2007
Location: The Tropics
Distribution: Slackware & Derivatives
Posts: 2,472
Blog Entries: 1

Rep: Reputation: 128Reputation: 128
Another internet messenger you can use is Gaim.
 
Old 03-29-2007, 09:27 AM   #9
nardz
Member
 
Registered: Feb 2007
Distribution: Kubuntu
Posts: 60

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by kalabanta
Another internet messenger you can use is Gaim.
yeah i tried that. wasnt much of a fan. kopete will have to do for now..

thanks
 
Old 03-29-2007, 10:22 AM   #10
tredegar
LQ 5k Club
 
Registered: May 2003
Location: London, UK
Distribution: Fedora38
Posts: 6,148

Rep: Reputation: 435Reputation: 435Reputation: 435Reputation: 435Reputation: 435
Quote:
what do i do for the address part if i use dhcp?
Make your /etc/network/interfaces look like this:
Code:
# The next four lines are vital. Do not mess with them, or you linux will be badly "broken"!
auto lo
iface lo inet loopback
address 127.0.0.1
netmask 255.0.0.0

auto eth1
iface eth1 inet dhcp
wpa-passphrase mysecretpassphrase
wpa-ssid ssid_of_my_AP
wireless-channel 11
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

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
Suse Linux IA-64 kernel rpm queries dkotian Linux - Software 2 10-31-2004 08:56 AM
multiple user/password queries with sambaand nautilus xround Linux - Networking 1 09-10-2004 06:39 AM
SQL: making queries from multiple tables ganninu Programming 1 01-08-2004 11:17 AM
Newbie with multiple problems with linux [mandrake 9.2 and SuSE 9.0] vadne Linux - Networking 2 12-02-2003 03:31 PM
newbie webserver queries. Trinity22 Linux - Newbie 5 08-22-2003 02:04 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 11:21 AM.

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