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 |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
|
|
11-28-2004, 03:53 PM
|
#1
|
Member
Registered: Nov 2004
Location: Cambridge, United Kingdom
Distribution: Ubuntu 5.04
Posts: 77
Rep:
|
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.
|
|
|
11-28-2004, 04:07 PM
|
#2
|
Member
Registered: Nov 2004
Location: Cambridge, United Kingdom
Distribution: Ubuntu 5.04
Posts: 77
Original Poster
Rep:
|
Gah!! Can no one help me....
|
|
|
11-28-2004, 04:11 PM
|
#3
|
Senior Member
Registered: Jun 2004
Location: Spain
Distribution: FC5
Posts: 1,993
Rep:
|
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.
|
11-28-2004, 04:12 PM
|
#4
|
Member
Registered: Nov 2004
Location: Cambridge, United Kingdom
Distribution: Ubuntu 5.04
Posts: 77
Original Poster
Rep:
|
Nice one, ill go try that...Its mounted by default..ill brb, any ideas about getting my GUI back?
|
|
|
11-28-2004, 04:13 PM
|
#5
|
Moderator
Registered: Jun 2001
Location: UK
Distribution: Gentoo, RHEL, Fedora, Centos
Posts: 43,417
|
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.
|
11-28-2004, 04:22 PM
|
#6
|
Member
Registered: Nov 2004
Location: Cambridge, United Kingdom
Distribution: Ubuntu 5.04
Posts: 77
Original Poster
Rep:
|
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?
|
|
|
11-28-2004, 04:25 PM
|
#7
|
Senior Member
Registered: Jun 2004
Location: Spain
Distribution: FC5
Posts: 1,993
Rep:
|
in the directory where the file is located do:
$ chmod 777 <filename>
|
|
|
11-28-2004, 04:26 PM
|
#8
|
Member
Registered: Nov 2004
Location: Cambridge, United Kingdom
Distribution: Ubuntu 5.04
Posts: 77
Original Poster
Rep:
|
What does that do?
|
|
|
11-28-2004, 04:27 PM
|
#9
|
Moderator
Registered: Jun 2001
Location: UK
Distribution: Gentoo, RHEL, Fedora, Centos
Posts: 43,417
|
no, the filesystem is mounted read only. chmod will have no effect.
mount -o ro,remount /dev/hda1 /mnt/windows
|
|
|
11-28-2004, 04:28 PM
|
#10
|
Member
Registered: Nov 2004
Location: Cambridge, United Kingdom
Distribution: Ubuntu 5.04
Posts: 77
Original Poster
Rep:
|
What does that do..?
|
|
|
11-28-2004, 04:33 PM
|
#11
|
Senior Member
Registered: Jun 2004
Location: Spain
Distribution: FC5
Posts: 1,993
Rep:
|
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)
|
|
|
11-28-2004, 04:47 PM
|
#12
|
Member
Registered: Nov 2004
Location: Cambridge, United Kingdom
Distribution: Ubuntu 5.04
Posts: 77
Original Poster
Rep:
|
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.
|
|
|
11-28-2004, 05:07 PM
|
#13
|
Member
Registered: Nov 2004
Location: Cambridge, United Kingdom
Distribution: Ubuntu 5.04
Posts: 77
Original Poster
Rep:
|
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?
|
|
|
11-28-2004, 05:41 PM
|
#14
|
Senior Member
Registered: Feb 2004
Location: Somerset, England
Distribution: Slackware 10.2, Slackware 10.0, Ubuntu 9.10
Posts: 1,938
Rep:
|
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.
|
|
|
11-28-2004, 05:47 PM
|
#15
|
Member
Registered: Apr 2004
Distribution: Debian SID and Woody
Posts: 77
Rep:
|
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.
|
All times are GMT -5. The time now is 10:39 AM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|