Forum     

Go Back   Digit Technology Discussion Forum > Software > Open Source
Register FAQ Calendar Mark Forums Read

Open Source A place where you can talk to like-minded people about the fastest growing software movement today! Discuss anything and everything about Open Source software and Operating Systems.

Closed Thread
 
LinkBack Thread Tools Display Modes
Old 07-06-2006, 02:11 PM   #1 (permalink)
GaurishSharma.com
 
gary4gar's Avatar
 
Join Date: May 2005
Location: Jaipur
Posts: 4,097
Cool UBuntu 5.1 installed:need Drivers

hey i am new to the linux world.pls mobo manufacturer has via chipset.and motherboard is msi-k8m100.a have on board gfx.i install ubuntu 5.1 & need manufacturer driver.via supports the following oses
Code:
Windows XP 
Windows XP 64-Bit 
Windows 2000 
Windows ME 
Windows NT 
Windows 98SE 
Windows 98 
Windows 95 
Windows Server 2003 x64 
DOS 
Windows XP Embedded SP2 
Windows XP Embedded 
Windows CE.net 5.0 
Windows CE.net 4.2 
Windows CE.net 4.1/4.0 
Linux XFree86 (Not distribution-specific) 
Mandriva 2006 Linux 
Mandrake / Mandriva pre-2006 Linux 
Fedora Core 5.0 Linux 
Fedora Core 1.0, 2.0 & 4.0 Linux 
Fedora Core 3.0 Linux 
Source 
SuSE Linux 
Red Flag Linux 
Red Hat Linux 
MAC OS
via wesite:http://www.viaarena.com/?PageID=2
which to download??
gary4gar is offline  
Advertisements. Register and be a member of the community to get rid of them.
Advertisement

Old 07-06-2006, 02:12 PM   #2 (permalink)
Wise Old Owl
 
dIgItaL_BrAt's Avatar
 
Join Date: Jan 2005
Posts: 1,135
Default Re: UBuntu 5.1 installed:need Drivers

as a wild guess,i guess it would be the 'Linux XFree86 (Not distribution-specific)' one.
__________________
A)bort, R)etry, I)nfluence with large hammer.
dIgItaL_BrAt is offline  
Old 07-06-2006, 02:14 PM   #3 (permalink)
GaurishSharma.com
 
gary4gar's Avatar
 
Join Date: May 2005
Location: Jaipur
Posts: 4,097
Default Re: UBuntu 5.1 installed:need Drivers

Quote:
Originally Posted by dIgItaL_BrAt
as a wild guess,i guess it would be the 'Linux XFree86 (Not distribution-specific)' one.

1)is it the debian installion package or rpm or the source simply??





2)how acees windows partions from linux



3)and how to untar a package

Last edited by gary4gar; 07-06-2006 at 11:37 PM.
gary4gar is offline  
Old 08-06-2006, 11:15 AM   #4 (permalink)
GaurishSharma.com
 
gary4gar's Avatar
 
Join Date: May 2005
Location: Jaipur
Posts: 4,097
Default Re: UBuntu 5.1 installed:need Drivers

how to ligin as root??
i need to confige net access
gary4gar is offline  
Old 08-06-2006, 12:20 PM   #5 (permalink)
Wise Old Owl
 
JGuru's Avatar
 
Join Date: Dec 2005
Location: Space-time continuum
Posts: 1,646
Default Re: UBuntu 5.1 installed:need Drivers

Gary, to create a root password & login as Root checkout this link:
https://wiki.ubuntu.com/RootSudo

Goodluck man
JGuru is offline  
Old 08-06-2006, 12:47 PM   #6 (permalink)
18 Till I Die............
 
Join Date: Jul 2004
Location: India, Mumbai, Marine Lines
Posts: 5,792
Default Re: UBuntu 5.1 installed:need Drivers

You should not login as root. It is a bad practise to login as root when you are connected to net. Ubuntu has a configured sudo so you can do everything using sudo and need not access root account. So, learn to use sudo. Don't use root. It's the first rule of security.
To access windows partition from linux you will have to mount it using mount command eg.
Code:
mount -t vfat /dev/hda1 /mnt/C_drive
If you have ntfs partition replace vfat with ntfs. But, ntfs partition are mounted as read-only.
/dev/hda1 is only an example, it will differ as per your hard disk - IDE/SATA and how you have partitioned it.
.mnt/C-drive can be given as you like it. I have just given one example.
To untar, you can just double click it.
tar -tvf archive.tar # List all files in archive.tar verbosely.
If it has been gzipped, I use
Code:
 tar xzvf <filename>
and for bz2zipped files I use
Code:
 tar bjvf <filename>
You can do
Code:
 tar --help
to find more options.
mehulved is offline  
Old 08-06-2006, 05:30 PM   #7 (permalink)
GaurishSharma.com
 
gary4gar's Avatar
 
Join Date: May 2005
Location: Jaipur
Posts: 4,097
Default Re: UBuntu 5.1 installed:need Drivers

hey in desertwind post i am supposed to modify nameserver name in cofig file in /etc dir/. but when i double to open the file it opens in gpedit as readonly who to modify it????
gary4gar is offline  
Old 08-06-2006, 07:09 PM   #8 (permalink)
18 Till I Die............
 
Join Date: Jul 2004
Location: India, Mumbai, Marine Lines
Posts: 5,792
Default Re: UBuntu 5.1 installed:need Drivers

To open it type
Code:
sudo gedit /etc/resolv.conf
in terminal
mehulved is offline  
Old 08-06-2006, 08:27 PM   #9 (permalink)
GaurishSharma.com
 
gary4gar's Avatar
 
Join Date: May 2005
Location: Jaipur
Posts: 4,097
Default Re: UBuntu 5.1 installed:need Drivers

thanx now i am connected to internet.i am wrinting this post from ubutu.that's all possible because of u.hats of to u.i will definately give some reps. few queries

1)mounting windows partion:i have four partions on a sata drive with NTFS as fileing system.now i deleted 2nd partion & insatlled linux on it.pls give exaxt command as earlier command gave not found error


2)i have firefox version of 1 which need to be updated to 1.5.how to do that
gary4gar is offline  
Old 09-06-2006, 12:25 AM   #10 (permalink)
18 Till I Die............
 
Join Date: Jul 2004
Location: India, Mumbai, Marine Lines
Posts: 5,792
Default Re: UBuntu 5.1 installed:need Drivers

Quote:
Originally Posted by gary4gar
1)mounting windows partion:i have four partions on a sata drive with NTFS as fileing system.now i deleted 2nd partion & insatlled linux on it.pls give exaxt command as earlier command gave not found error
Use
Code:
mount -t ntfs /dev/sda1 /mnt/C-drive
Code:
mount -t ntfs /dev/sda3 /mnt/D-drive
Code:
mount -t ntfs /dev/sda4 /mnt/E-drive
You will get read-only access though.
To read-write use ntfs-captive.But it takes loooong time to wrie so preferably make one partition as fat32.

Quote:
Originally Posted by gary4gar
2)i have firefox version of 1 which need to be updated to 1.5.how to do that
download latest version. untar it and copy it to /usr/lib/firefox using sudo command.
Code:
sudo cp firefox /usr/lib/firefox
And please start learning basic linux commands. They will be very helpful to maintain your system.
mehulved is offline  
Old 09-06-2006, 08:33 AM   #11 (permalink)
GaurishSharma.com
 
gary4gar's Avatar
 
Join Date: May 2005
Location: Jaipur
Posts: 4,097
Default Re: UBuntu 5.1 installed:need Drivers

mount commmand retunrns a error
Code:
mount: mount point /mnt/D-drive does not exist
pls suggest a link where all basic coomands are listed in detail.
gary4gar is offline  
Old 09-06-2006, 08:34 AM   #12 (permalink)
GaurishSharma.com
 
gary4gar's Avatar
 
Join Date: May 2005
Location: Jaipur
Posts: 4,097
Default Re: UBuntu 5.1 installed:need Drivers

the mount command returns a error
Code:
mount: mount point /mnt/D-drive does not exist
pls suggest a link where i will find all basic commands.
gary4gar is offline  
Old 09-06-2006, 09:23 AM   #13 (permalink)
In Pursuit of "Happyness"
 
kalpik's Avatar
 
Join Date: May 2005
Location: New Delhi
Posts: 3,404
Default Re: UBuntu 5.1 installed:need Drivers

^^ First make folders named "C-drive", "D-drive" and "E-drive" under /mnt/
Remember, linux is case sensitive.. so "c-drive" is different from "C-drive".
kalpik is offline  
Old 09-06-2006, 11:19 AM   #14 (permalink)
GaurishSharma.com
 
gary4gar's Avatar
 
Join Date: May 2005
Location: Jaipur
Posts: 4,097
Default Re: UBuntu 5.1 installed:need Drivers

mounted all folders.also figured out a new method via disk manager.it works in gfx state so no need to do it in terminal.very easy for a windows user like me.no tension of upper case & lower case.


Totem movie player is showing the error when playing movies from windows partion(ntfs)



what to do??

also how to set file permissions from root to my user name
gary4gar is offline  
Old 09-06-2006, 12:12 PM   #15 (permalink)
Commander in Chief
 
QwertyManiac's Avatar
 
Join Date: Jul 2005
Posts: 6,657
Default Re: UBuntu 5.1 installed:need Drivers

For file permissions use chmod

Have you configured media playback under ubuntu? If not you cant play any media file... You need to download gstreamer codecs etc...
__________________
Harsh J
www.harshj.com
QwertyManiac is offline  
Old 09-06-2006, 12:28 PM   #16 (permalink)
18 Till I Die............
 
Join Date: Jul 2004
Location: India, Mumbai, Marine Lines
Posts: 5,792
Default Re: UBuntu 5.1 installed:need Drivers

For media playback. Use win32codecs. To install win32codecs, install Automatix. I have given link on how to install and use Automatix many times in the forum, please search it and use. it will make installation easier.
To change file permissions use chmod.
Code:
 man chmod
will give you what options are there
To change owner permissions use chown
Code:
man chown
will give you more info.
mehulved is offline  
Old 09-06-2006, 07:13 PM   #17 (permalink)
GaurishSharma.com
 
gary4gar's Avatar
 
Join Date: May 2005
Location: Jaipur
Posts: 4,097
Default Re: UBuntu 5.1 installed:need Drivers

how do u ppl check usage in linux.?????
also do every time i have to mount a windows partion to use??.it can't be automactically??
gary4gar is offline  
Old 10-06-2006, 12:00 AM   #18 (permalink)
18 Till I Die............
 
Join Date: Jul 2004
Location: India, Mumbai, Marine Lines
Posts: 5,792
Default Re: UBuntu 5.1 installed:need Drivers

Quote:
Originally Posted by gary4gar
how do u ppl check usage in linux.?????
also do every time i have to mount a windows partion to use??.it can't be automactically??
Check usage of what?
To mount the partitions automatically add them to /etc/fstab in the following format
Code:
/mnt/C-Drive   /dev/hda1   ntfs   defaults   0 0
Why don't you bother checking ubuntu guide? Is it too much of work? It's time you start refering or else you will take ages to learn. They have explained such tasks there.
mehulved is offline  
Old 10-06-2006, 08:47 AM   #19 (permalink)
GaurishSharma.com
 
gary4gar's Avatar
 
Join Date: May 2005
Location: Jaipur
Posts: 4,097
Default Re: UBuntu 5.1 installed:need Drivers

of my Dataone one Account. in BSNL BROADBAND.it does not accept firefox(default).also there no chance of ie in linux.the shaplus BB meter Does not Work in linux.any other greek way to do it.
gary4gar is offline  
Old 10-06-2006, 09:28 AM   #20 (permalink)
18 Till I Die............
 
Join Date: Jul 2004
Location: India, Mumbai, Marine Lines
Posts: 5,792
Default Re: UBuntu 5.1 installed:need Drivers

Hmm I don't know but there should exist one.
Who told you IE can't be installed on linux? You just need to install wine and winetools. If you have configured your repositories proerly you will see wine and winetools in synaptic. Install them and follow http://frankscorner.org/index.php?p=ie6
At the above site you will find how to install many windows apps on linux.
But, this should only be last choice if you get nothing.
mehulved is offline  
Old 11-06-2006, 11:57 AM   #21 (permalink)
GaurishSharma.com
 
gary4gar's Avatar
 
Join Date: May 2005
Location: Jaipur
Posts: 4,097
Default Re: UBuntu 5.1 installed:need Drivers

what are the other choices other than installing ie



Bravo:My Six Hundreded Post.

Last edited by gary4gar; 11-06-2006 at 11:59 AM.
gary4gar is offline  
Old 11-06-2006, 02:02 PM   #22 (permalink)
18 Till I Die............
 
Join Date: Jul 2004
Location: India, Mumbai, Marine Lines
Posts: 5,792
Default Re: UBuntu 5.1 installed:need Drivers

Well I saw a similar query on Linux User Group of Mumbai mailing list.
Follow this thread http://mm.ilug-bom.org.in/pipermail/...05/051982.html
You might find some answer. One seems gkrellm which is available in ubuntu.
mehulved is offline  
Old 11-06-2006, 10:48 PM   #23 (permalink)
GaurishSharma.com
 
gary4gar's Avatar
 
Join Date: May 2005
Location: Jaipur
Posts: 4,097
Default Re: UBuntu 5.1 installed:need Drivers

which is the all in pack for linux like k-lite codec pack in windows so i don't have to download every time when i install linux.any .deb package
gary4gar is offline  
Old 12-06-2006, 01:41 AM   #24 (permalink)
18 Till I Die............
 
Join Date: Jul 2004
Location: India, Mumbai, Marine Lines
Posts: 5,792
Default Re: UBuntu 5.1 installed:need Drivers

Quote:
Originally Posted by gary4gar
which is the all in pack for linux like k-lite codec pack in windows so i don't have to download every time when i install linux.any .deb package
What do you mean. Please be more clearer. Many of your queries are not written properly, it's difficult to understand what you're asking.
Do you mean multimedia codec pack? Then it's win32codecs. You will find it's deb file in ubuntu repositories.
mehulved is offline  
Old 12-06-2006, 05:05 AM   #25 (permalink)
18 Till I Die............
 
Join Date: Jul 2004
Location: India, Mumbai, Marine Lines
Posts: 5,792
Default Re: UBuntu 5.1 installed:need Drivers

Here's one software for counting DataOne usage statics http://dobs.sourceforge.net/
And don't forget to read the FAQ's here http://dobs.sourceforge.net/faq.html
mehulved is offline  
Old 12-06-2006, 08:39 AM   #26 (permalink)
GaurishSharma.com
 
gary4gar's Avatar
 
Join Date: May 2005
Location: Jaipur
Posts: 4,097
Default Re: UBuntu 5.1 installed:need Drivers

its is a perl file & does not run what to do
huh?
gary4gar is offline  
Old 12-06-2006, 10:01 AM   #27 (permalink)
Wise Old Owl
 
vignesh's Avatar
 
Join Date: Jul 2004
Location: Chennai
Posts: 1,659
Default Re: UBuntu 5.1 installed:need Drivers

Compile it using perl

perl <fn>.perl
vignesh is offline  
Old 13-06-2006, 03:52 PM   #28 (permalink)
GaurishSharma.com
 
gary4gar's Avatar
 
Join Date: May 2005
Location: Jaipur
Posts: 4,097
Default Re: UBuntu 5.1 installed:need Drivers

hey when i boot my pc default os is ubuntu how to set it to windows as in night want to download remember dataone 2-8 am free.pls help
gary4gar is offline  
Old 15-06-2006, 07:46 PM   #29 (permalink)
Wise Old Owl
 
vignesh's Avatar
 
Join Date: Jul 2004
Location: Chennai
Posts: 1,659
Default Re: UBuntu 5.1 installed:need Drivers

Edit your /boot/grub/menu.lst file and do the line that starts with "default" and change the number to the number xp is in the order .. The numbering starts from 0.
vignesh is offline  
Old 15-06-2006, 08:07 PM   #30 (permalink)
GaurishSharma.com
 
gary4gar's Avatar
 
Join Date: May 2005
Location: Jaipur
Posts: 4,097
Default Re: UBuntu 5.1 installed:need Drivers

thanx
gary4gar is offline  
Closed Thread

Bookmarks

Thread Tools
Display Modes

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 On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT +5.5. The time now is 05:14 PM.


Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2012, vBulletin Solutions, Inc.

Search Engine Optimization by vBSEO 3.3.2