LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   Tutorials (https://www.linuxquestions.org/questions/linux-newbie-8/tutorials-18701/)

microkid88 04-16-2002 09:39 PM

Tutorials
 
I am a very raw :newbie: and I need some tutorials for Mandrake Linux, please no Red Hat tutorials. :)

jeremy 04-16-2002 09:49 PM

Tutorials are coming to LinuxQuestions.org soon. Stay tuned!

--jeremy

DMR 04-16-2002 10:54 PM

I assume you're not just looking for the usual "user's guide" kind of stuff Mandrake has on their support site then, right? Do you need more in-depth general documentation (than Mandrake's site offers), or are there specific topics you need information on? Tell us what your needs are, so that we can provide the most on-target responses.

microkid88 04-17-2002 05:39 PM

I want to be able to comstumise the windows x stuff and other things like that.

DMR 04-17-2002 08:12 PM

GUI stuff doesn't depend on what distro you're using so much as it does which desktop environment/window manager(s) you use. If your using Gnome or KDE, they're going to work pretty much the same way across distros. Each distro is going to include diferent programs and GUI tools/utilities, but otherwise...

kde.org has documentation on the general workings of the KDE desktop environment, as well as instructions for individual programs included in the package on their
support site. Gnome.org has similar information on their site.

Xwinman.org is a good place to start for window managers, as it has links to all of the popular ones, as well as links to related resources.

Themes.org is the place to look for goodies to customize your window managers (themes, skins, pointers, sounds, etc.).

microkid88 04-18-2002 05:45 PM

I just have one more question, Is it possible to copy an error log file and put it in a .txt file and send it to the c: partiton from the comand prompt, and is it possible to get into dos via Linux Command promt?

DMR 04-18-2002 09:31 PM

Quote:

Originally posted by microkid88
I just have one more question, Is it possible to copy an error log file and put it in a .txt file and send it to the c: partiton from the comand prompt
Yes. The easiest way to transfer the contents of one file to another file from the command line is to use the redirection operator ">". In your case:
Code:

cat logfile name >newfile.txt
would feed the contents of logfile name into a new (text) file called newfile.txt.

You would then mount your Windows partition, if it isn't already mounted. Assuming the Windows partition is the first partition of your first hard drive, and you have created a directory called win under /mnt:
Code:

mount -t vfat -rw -o user,umask=000 /dev/hda1 /mnt/win
Finally, copy the file to the Win partition:
Code:

cp newfile /mnt/win
That will copy the file to the root directory (C:\) of Win.


Quote:

Originally posted by microkid88
is it possible to get into dos via Linux Command promt?
Natively, no. DOS is an OS in its own right; you would have to boot into it to use it.

microkid88 04-19-2002 10:05 PM

I typed in the mount thing and it came up and said, mount: /dev/hda1 is not a valid blocking device

DMR 04-19-2002 11:01 PM

Quote:

Originally posted by DMR
Assuming the Windows partition is the first partition of your first hard drive
/my bad- I should have been more precise. Is your Windows partition the first partition on your Primary Master IDE device? If not, where is it? Does it have an entry in /etc/fstab?

microkid88 04-20-2002 08:56 AM

I don't know what you are talking about. All I know is that my Windows partition is a DOS partition made with fdisk. and that it is the primary partition C: ad I have a extended partition, D:


All times are GMT -5. The time now is 08:24 PM.