LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
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 11-28-2004, 03:53 PM   #1
midgcool
Member
 
Registered: Nov 2004
Location: Cambridge, United Kingdom
Distribution: Ubuntu 5.04
Posts: 77

Rep: Reputation: 15
Can anyone help me (Previously called Urgent..Im having a nightmare.....)


Hello

Please dont ask how I got into this situation, but basically I was trying to get America's Army to work, and I was messing around with xFree86, I couldnt get AA to work, I restarted hoping this would work...but instead I was greeted by a command line instead of my usual Mandrake 10 GUI.....nightmare..I have no clue how to use the command line....No problem I will reinstalled Linux (Not the reinstall where you lose your files, the other sort) Mid way through the install ..Wham! Bam!.."Error, No Kernel" ???It takes me to the Lilo config asking me to type the name of the Linux image, have no idea????

Anyway..more importantly I need to get my physics coursework of my Linux Partitions onto my Windows partition, how do I do this from the command line?

Any Ideas how to get my GUI back..bearing in mind I do have the ATI drivers on my Linux partition, but I dont know what to do with them?

Please help..the science has to be in on Tuesday!!

A few notes...

Distro is Mandrake and I was using KDE 3.3 or 3.2 Te xFree version I did have was 4.3, please help....

Please

Cheers

Last edited by midgcool; 11-28-2004 at 04:23 PM.
 
Old 11-28-2004, 04:07 PM   #2
midgcool
Member
 
Registered: Nov 2004
Location: Cambridge, United Kingdom
Distribution: Ubuntu 5.04
Posts: 77

Original Poster
Rep: Reputation: 15
Gah!! Can no one help me....
 
Old 11-28-2004, 04:11 PM   #3
linmix
Senior Member
 
Registered: Jun 2004
Location: Spain
Distribution: FC5
Posts: 1,993
Blog Entries: 1

Rep: Reputation: 46
Do you have windows partition(s) mounted standard by fstab?

If not., furst make the destination folder

$ mkdir /mnt/windows

then mount the windows partition to that folder

$ mount -t vfat /dev/hdxn /mnt/windows

... where "x" is your drive (if you only have one it's "a") and "n" the partition number (probably "1" -> "hda1") If you use ntfs write "ntfs" instead of vfat and keep your fingers crossed

Now "cd" into the directory where your physics coursework is (probably /home/<your username> and when there type:

$ cp <the name of your course work> /mnt/windows

you can use the autocomplete function in bash to help you do this. just write the beginning of the name of the file and press "tab" ... the rest should appear as if by magic. Of course, you can also drop the file into any windows folder you like by simply continuing you specification after /mnt/windows e.g. "/mnt/windows/documents and settings/myname/My Documents" (if there are spaces in the folder names you need to use "" around the path) and again, you can use autocomplete to help you get there without typos.

Good luck!
 
1 members found this post helpful.
Old 11-28-2004, 04:12 PM   #4
midgcool
Member
 
Registered: Nov 2004
Location: Cambridge, United Kingdom
Distribution: Ubuntu 5.04
Posts: 77

Original Poster
Rep: Reputation: 15
Nice one, ill go try that...Its mounted by default..ill brb, any ideas about getting my GUI back?
 
Old 11-28-2004, 04:13 PM   #5
acid_kewpie
Moderator
 
Registered: Jun 2001
Location: UK
Distribution: Gentoo, RHEL, Fedora, Centos
Posts: 43,417

Rep: Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985
OK, i wasn't going to say anything, but seeing as you bumped your thread FOURTEEN MINUTES after posting.....

please do not mark threads as urgent. it might be urgent for you, but it is not urgent for the thousands ofLQ members who kindly donate thier spare time to help others. it is not fair to demand a priority response from volunteers. Many members will deliberately ignore questions marked as such.

and bumping after such an insanely short length of time??
 
1 members found this post helpful.
Old 11-28-2004, 04:22 PM   #6
midgcool
Member
 
Registered: Nov 2004
Location: Cambridge, United Kingdom
Distribution: Ubuntu 5.04
Posts: 77

Original Poster
Rep: Reputation: 15
Well it is pretty urgent for me...anyhow....i did the cp thing and it says, along these lines, Cannot create /mnt/windows/ScienceCoursework.doc Read only file system, how do I fix this?
 
Old 11-28-2004, 04:25 PM   #7
linmix
Senior Member
 
Registered: Jun 2004
Location: Spain
Distribution: FC5
Posts: 1,993
Blog Entries: 1

Rep: Reputation: 46
in the directory where the file is located do:

$ chmod 777 <filename>
 
Old 11-28-2004, 04:26 PM   #8
midgcool
Member
 
Registered: Nov 2004
Location: Cambridge, United Kingdom
Distribution: Ubuntu 5.04
Posts: 77

Original Poster
Rep: Reputation: 15
What does that do?
 
Old 11-28-2004, 04:27 PM   #9
acid_kewpie
Moderator
 
Registered: Jun 2001
Location: UK
Distribution: Gentoo, RHEL, Fedora, Centos
Posts: 43,417

Rep: Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985
no, the filesystem is mounted read only. chmod will have no effect.

mount -o ro,remount /dev/hda1 /mnt/windows
 
Old 11-28-2004, 04:28 PM   #10
midgcool
Member
 
Registered: Nov 2004
Location: Cambridge, United Kingdom
Distribution: Ubuntu 5.04
Posts: 77

Original Poster
Rep: Reputation: 15
What does that do..?
 
Old 11-28-2004, 04:33 PM   #11
linmix
Senior Member
 
Registered: Jun 2004
Location: Spain
Distribution: FC5
Posts: 1,993
Blog Entries: 1

Rep: Reputation: 46
my post: allow you to modify (write/wipe) the file you want to move (but that shouldn't be necessary)

acid_kewpie's post: allow you to write to the windows partition (which it appears you cannot right now)
 
Old 11-28-2004, 04:47 PM   #12
midgcool
Member
 
Registered: Nov 2004
Location: Cambridge, United Kingdom
Distribution: Ubuntu 5.04
Posts: 77

Original Poster
Rep: Reputation: 15
hmmm acids post didnt work..I type and nothing happens, it will just bring up a new [computername-root]$ thing where you can type more commands....any more ideas?

Ps- The windows Partition is NFTS btw

Last edited by midgcool; 11-28-2004 at 04:51 PM.
 
Old 11-28-2004, 05:07 PM   #13
midgcool
Member
 
Registered: Nov 2004
Location: Cambridge, United Kingdom
Distribution: Ubuntu 5.04
Posts: 77

Original Poster
Rep: Reputation: 15
Ok well i did some more research on the net, it seems that this is pretty difficult with an NFTS partition, however I have made a 1gig partition, now how do I mount this drive?
 
Old 11-28-2004, 05:41 PM   #14
Komakino
Senior Member
 
Registered: Feb 2004
Location: Somerset, England
Distribution: Slackware 10.2, Slackware 10.0, Ubuntu 9.10
Posts: 1,938

Rep: Reputation: 55
Is this coursework just a document? I mean...couldn't you just put it on a floppy...

...and you realise that if you hadn't been so rash in trying to reinstall linux, it would probably have only been a case of typing "startx" to get back into the GUI...

Or....if you still have internet access in linux, try using lynx or links (better) to email it to yourself from hotmail or yahoo or similar.
 
Old 11-28-2004, 05:47 PM   #15
debian_dummy
Member
 
Registered: Apr 2004
Distribution: Debian SID and Woody
Posts: 77

Rep: Reputation: 15
If none of the solutions above works for you, go to http://www.knopper.net/knoppix-mirrors/index-en.html and download the Knoppix ISO. Burn it to CD and boot up using the CD.

Knoppix should give you access to all your partitions (NTFS and Linux) and allow you to copy your documents to a floppy BUT probably NOT to a NTFS drive.

Last edited by debian_dummy; 11-28-2004 at 05:52 PM.
 
1 members found this post helpful.
  


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
boot sector and lilo collapse !!!!! URGENT URGENT URGEN !!!!! frelihm Linux - Software 21 12-02-2009 10:21 AM
Urgent Question Regarding Urgent Questions! Need Help Now! Crashed_Again LQ Suggestions & Feedback 11 10-17-2007 08:07 PM
Urgent obisy001 Linux - Hardware 2 04-05-2004 05:26 AM
Urgent Urgent !!!! Mozilla Keeps All Your Deleted Emails !!!! odin123 Linux - Software 2 01-31-2004 02:22 AM
urgent - mv vs. rm cuckoopint Linux - General 12 02-21-2003 05:57 AM

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

All times are GMT -5. The time now is 09:24 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