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.


View Poll Results: Best linux: Criterias: Compatibility, Availability of drivers and Ease of Use
Ubuntu 3 33.33%
Suse 2 22.22%
Knoppix 2 22.22%
Other 2 22.22%
Voters: 9. You may not vote on this poll

Closed Thread
 
LinkBack Thread Tools Display Modes
Old 26-04-2006, 11:36 AM   #1 (permalink)
!FREEWARES!
 
Akshay's Avatar
 
Join Date: Aug 2004
Location: Mumbai
Posts: 1,077
Default Suse Linux Queries...


I recently installed Suse Linux 9.3 and have come across some queries. Plz help me...

1. How do I uninstall Suse Linux 9.3 from my system without harming my XP professional?
I have installed Win XP Pro. on c:\ and Suse Linux on f:\. When my system boots up, Grub loader 1.5 starts. How can I let XP set boot options
and not linux? Also the time for making a selection is only 8secs with Suse linux as default option. How can I change the time and set XP as default option?

2. How do I access other drives from Linux (mount option)?
How do I mount other drives in linux i.e. c:\, d:\, e:\ and DVD/CDRW drive
What is the exact command for mounting drives and what does using /dev or any other option do?

3. How do I play mp3 files in Linux?

4. Can I install all the s/w's that come with Digit for Linux? or is it dependent upon the flavor? (couldnt try installing as I could not mount my DVD/CDRW drive)
__________________
MBP 13.3";
PC: Core i-5 2400, Intel H67, GSkill 4GB DDR3, Sapphire 6850 Toxic, 1TB HDD, Samsung P2370
Steam (Cod-MW2 only) - akshay81
Akshay is offline  
Advertisements. Register and be a member of the community to get rid of them.
Advertisement

Old 26-04-2006, 11:54 AM   #2 (permalink)
In The Zone
 
adit_sen's Avatar
 
Join Date: Feb 2004
Location: Perth, A*stralia
Posts: 342
Default

hi..

1. to uninstall linux without harming your winxp, what I do is just delete the
linux partition, the boot up with the winxp cd, go to the recovery console and type 'fixmbr'. that restores the winxp boot menu.

2. there are plenty of ways to mount windows drives, but i would recommend that you get the 'captive-ntfs' rpm from http://www.jankratochvil.net/project/captive/
this would give you both, read and write acces on windows ntfs drives.

3. to play mp3 files you can use any of the mp3 players for linux available out there. i use xmms. u can get it from www.xmms.org

4. I suppose you could install the linux software's that come with digit. in my experience, you can install any linux software on any platfrom, even if its an rpm distibution and you want to install on a debian platform, it can be done with ease.

peace...
aditya
__________________
AMD 4400+ X2; Compaq Presario M2202TU; Dell Inspirion 500m; Windows Vista Ultimate
adit_sen is offline  
Old 26-04-2006, 06:30 PM   #3 (permalink)
!FREEWARES!
 
Akshay's Avatar
 
Join Date: Aug 2004
Location: Mumbai
Posts: 1,077
Default

Thnx adit. The "fixmbr" worked. But for step 2, prb. is accessing other drives in linux or accessing linux frm WinXP. Say I download the s/w. u have recommended... How do I get it to work in linux? how do I copy it to f:\ . I have heard there is some command in linux like mount hd* (* = a or b)\dev or mount hdb \etc or something like that. If such command exists then it will be easier for me access odr drives.
__________________
MBP 13.3";
PC: Core i-5 2400, Intel H67, GSkill 4GB DDR3, Sapphire 6850 Toxic, 1TB HDD, Samsung P2370
Steam (Cod-MW2 only) - akshay81
Akshay is offline  
Old 27-04-2006, 08:40 AM   #4 (permalink)
In The Zone
 
adit_sen's Avatar
 
Join Date: Feb 2004
Location: Perth, A*stralia
Posts: 342
Default

ok. this is how you would mount manually. (btw, this is what i do in ubuntu. i'm assuming its the same for suse). all of this should be done as root. and i'm assuming you're windows drives are ntfs and not fat.

first you list your partition table using
fdisk -1

assuming that your windows drive is /dev/hda1, you then type
mkdir /media/windows
mount /dev/hda1 /media/windows -t ntfs -o nls=utf8,umask=0222


this will mount your windows drive in /media/windows.
if you have partitions, repeat the same, with the appropriate /dev/hda#

and to unmount the drive, you type umount /media/windows


Now, if you want to automatically mount the drive each time u boot up, you need to edit the /etc/fstab file.
to do this, first create a backup of your file using
cp /etc/fstab /etc/fstab_backup

then edit the file
gedit /etc/fstab

and add the following line at the end of the file
/dev/hda1 /media/windows ntfs nls=utf8,umask=0222 0 0

save the file. then type
mount -a


this should mount your drive


peace...
aditya
__________________
AMD 4400+ X2; Compaq Presario M2202TU; Dell Inspirion 500m; Windows Vista Ultimate

Last edited by adit_sen; 27-04-2006 at 05:06 PM.
adit_sen is offline  
Old 27-04-2006, 10:09 AM   #5 (permalink)
Broken In
 
sknowonweb's Avatar
 
Join Date: Nov 2005
Location: CHENNAI
Posts: 134
Default

Quote:
unmount /media/windows
Let me correct ur little typo aditya,
Hello Akshay that cmd is
'umount /media/windows' , Not unmount , I struggled with it a lot of time when i learned those things .
And one more important thing is ur present working directory mustnot be /media/windows in any of the terminals for successful unmount.
__________________
தமிழ் வாழ்க
____________

EVIL : G00D :: YIN : YANG
________
sknowonweb is offline  
Old 27-04-2006, 05:06 PM   #6 (permalink)
In The Zone
 
adit_sen's Avatar
 
Join Date: Feb 2004
Location: Perth, A*stralia
Posts: 342
Default Re: Suse Linux Queries...

oops...sorry....my mistake...

peace...
aditya
__________________
AMD 4400+ X2; Compaq Presario M2202TU; Dell Inspirion 500m; Windows Vista Ultimate
adit_sen is offline  
Old 27-04-2006, 07:58 PM   #7 (permalink)
!FREEWARES!
 
Akshay's Avatar
 
Join Date: Aug 2004
Location: Mumbai
Posts: 1,077
Default Re: Suse Linux Queries...

I use fat32. So are the commands diff. for fat 32 and ntfs? Also I have given myself all the privilages. So am I at root level?
__________________
MBP 13.3";
PC: Core i-5 2400, Intel H67, GSkill 4GB DDR3, Sapphire 6850 Toxic, 1TB HDD, Samsung P2370
Steam (Cod-MW2 only) - akshay81
Akshay is offline  
Old 28-04-2006, 05:22 PM   #8 (permalink)
In The Zone
 
adit_sen's Avatar
 
Join Date: Feb 2004
Location: Perth, A*stralia
Posts: 342
Default Re: Suse Linux Queries...

for fat...to mount manually you would type
mount /dev/hda1 /media/windows -t vfat -o iocharset=utf8,umask=000

and in the /etc/fstab file you would add
/dev/hda1 /media/windows vfat iocharset=utf8,umask=000 0 0


peace...
aditya
__________________
AMD 4400+ X2; Compaq Presario M2202TU; Dell Inspirion 500m; Windows Vista Ultimate
adit_sen is offline  
Old 29-04-2006, 01:17 AM   #9 (permalink)
!FREEWARES!
 
Akshay's Avatar
 
Join Date: Aug 2004
Location: Mumbai
Posts: 1,077
Default Re: Suse Linux Queries...

Hey thnx aditya...

Very useful info. from ur side. But how can I determine at wht level m i and how do i get root level access

Thnx
__________________
MBP 13.3";
PC: Core i-5 2400, Intel H67, GSkill 4GB DDR3, Sapphire 6850 Toxic, 1TB HDD, Samsung P2370
Steam (Cod-MW2 only) - akshay81
Akshay is offline  
Old 29-04-2006, 02:43 AM   #10 (permalink)
String Phreak
 
mediator's Avatar
 
Join Date: Mar 2005
Location: In ur Evil Mind!
Posts: 2,457
Default Re: Suse Linux Queries...

This is the exact query i posted 1.5 yrs back when i was a noob.
U can find ur level by typing "echo $LOGNAME on $HOSTNAME had uid = $UID" in the terminal. And "su" to get root access.
mediator 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


 
Latest Threads
- by topgear

Advertisement




All times are GMT +5.5. The time now is 08:41 AM.


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

Search Engine Optimization by vBSEO 3.3.2