The MP3car.com Store The MP3car.com Store    

Sponsored links

Go Back   MP3Car.com > Mp3Car Technical > Newbie

Reply
 
LinkBack Thread Tools Display Modes
Old 04-04-2004, 10:43 AM   #1
Newbie
 
Join Date: Dec 2003
Posts: 18
DOS File Transfer & CPU Control

I'm working on a basic car MP3 player, and right now it is running windows 98. But it's only a p1 133 or something along that line, so I would like to run DOS and MPXPlay because windows takes too long to boot up. Accept I was running Remote Administrator on Windows and used that to transfer and set up stuff without having to take it out of my car. Does anyone know how I can do all this stuff, enable networking and have a remote desktop with DOS?
Powers is offline   Reply With Quote
Advertisement
 
Advertisement
Sponsored links

Old 04-04-2004, 10:50 AM   #2
Low Bitrate
 
Join Date: Feb 2004
Location: Michigan
Posts: 62
Quote: Originally Posted by Powers
I'm working on a basic car MP3 player, and right now it is running windows 98. But it's only a p1 133 or something along that line, so I would like to run DOS and MPXPlay because windows takes too long to boot up. Accept I was running Remote Administrator on Windows and used that to transfer and set up stuff without having to take it out of my car. Does anyone know how I can do all this stuff, enable networking and have a remote desktop with DOS?

i can help you with file transfer.. a bat file i wrote:
net use x: \\raydesktop\Media\Music
xcopy x:\*.* c:\Music\ /D /Y /S
net use x: /DELETE

line 1 maps a network drive to the location where the source folder is. line 2 copies all files that: dont exist in the destionation folder, or if they exist, if the source file has a newer date, copies it. line 3 closes the network resource. i like the date checking because i like to keep my car's music library updated against my desktop's. if i change an ID3 tag or somthing, the change will carry over, and it only copies updated or new files, so i dont waste time copying gigs and gigs of music over when i only want to update a few songs. i dont know much about dos or networking in dos or anything. i'm young, it was before my time i hope i helped.

ray
raypsaliga is offline   Reply With Quote
Old 04-04-2004, 10:53 AM   #3
Newbie
 
Join Date: Dec 2003
Posts: 18
Ya, everything worked so well in Windows, but it's just too damn slow. Dos would be nice, but i don't know how to use it.

So what do I do with that bat? exec it on the computer I'm transfering to?
Powers is offline   Reply With Quote
Old 04-04-2004, 10:58 AM   #4
Low Bitrate
 
Join Date: Feb 2004
Location: Michigan
Posts: 62
yeah, save it in notepad as a .bat, and it will execute like an .exe. its written now to be on the computer that is being transfered to, but if you want it on the other one:
net use x: \\rayscar\Music
xcopy c:\Music\*.* x:\ /D /Y /S
net use x: /DELETE
raypsaliga is offline   Reply With Quote
Old 04-04-2004, 11:02 AM   #5
Newbie
 
Join Date: Dec 2003
Posts: 18
OK, thanks. If you have any ideas of how to enable netbios and file transfer between a DOS and Windows XP machine let me know.

Also, how does one start up MPXPlay on bootup?
This DOS is almost all french to me.

I have a MPXPlay boot disk, but it takes just as long to load, will that work if I copy it to the hard drive?
Powers is offline   Reply With Quote
Old 04-04-2004, 11:04 AM   #6
Low Bitrate
 
Join Date: Feb 2004
Location: Michigan
Posts: 62
you can get a faster computer for pretty cheap... http://www.tigerdirect.com/applicati...MBM-M6VLQ-1300
quite an upgrade for 80 bucks. also try newegg.com if you are interested, they might even be cheaper.
raypsaliga is offline   Reply With Quote
Old 04-04-2004, 02:09 PM   #7
Low Bitrate
 
Join Date: Feb 2001
Posts: 78
Quote: Originally Posted by Powers
OK, thanks. If you have any ideas of how to enable netbios and file transfer between a DOS and Windows XP machine let me know.

DOS doesn't have built-in networking support. It can be added, though, by installing additional software. This page gives instuctions on how to install the Microsoft Network Client for DOS.
http://www.wown.com/j_helmig/dosclnt3.htm

With this Microsoft client, one can map drive letters to Windows networking shares.

At the bottom of the page, there's a link called "DOS-based Microsoft Network Server". It gives instructions on how to get things set up so one can share files, on the DOS machine, with other Windows-based computers.

Quote:
Also, how does one start up MPXPlay on bootup?

There's a batch file called autoexec.bat, which is automatically run when you boot into DOS. You'd add a command at the end of the batch file, to tell DOS to run MPXPlay.

Quote:
This DOS is almost all french to me.

Here's a couple of tutorials that cover the basics:
http://www.users.globalnet.co.uk/~jchap/tvdt.htm
http://www.homepages.better.net.au/t...STUTORIAL.html

Quote:
I have a MPXPlay boot disk, but it takes just as long to load, will that work if I copy it to the hard drive?

I'd grab a copy of the most recent version of MPXPlay and start fresh. The version of MPXPlay on the boot disk may or may not be recent, and who knows how it was configured. You'll definitely want to put MPXPlay on the hard drive.

Since you're running Windows 98 you won't need to install DOS. It's already there. In the root directory on c: drive there's a file called MSDOS.SYS SYS files are normally DOS device drivers, but not this particular file. Open it up in a text editor (Notepad is fine). Near the top you should see a line that says: BootGUI=1 Change it to BootGUI=0 When you reboot, the computer will boot into DOS, instead of loading Windows. If you need to get back into Windows for some reason, just type Win at the command prompt.
__________________
http://thecoldfront.com
bh76 is offline   Reply With Quote
Old 04-04-2004, 02:30 PM   #8
Newbie
 
Join Date: Dec 2003
Posts: 18
Ok, I installed DOS 6.22 fresh, mainly because I only have 740 Mb of hard drive space to work with. I've got it all loading and stuff, I just need to network. Hopefully I can get that all working.

Thanks for the help guys.
Powers is offline   Reply With Quote
Old 04-04-2004, 02:55 PM   #9
Raw Wave
 
Rob Withey's Avatar
 
Join Date: Apr 2000
Location: Surrey, UK
Posts: 2,077
www.wown.com was invaluable when I was setting up ndis drivers under dos. Unfortunately they appear to have removed their dos section now, but archive.org still has the old version:

http://web.archive.org/web/200306221...g/dosclien.htm
__________________
6yr old first install died 20/8/2005 as result of bad bios flash.

New system : 6x5x2" contains 1GHz C3 PCM9373, ISR based PSU, 8Gb flash DOM, 98Lite, DirectShow based frontend.
GPS : Rikaline 6010.
Display : LTM08C351 + LVDS receiver.
Rob Withey is offline   Reply With Quote
Old 04-04-2004, 04:09 PM   #10
Newbie
 
Join Date: Dec 2003
Posts: 18
OK, I got the Dos client on the computer, but there is no TCP/IP, which i need to get on my network. Does anyone know where i can get tcp/ip drivers for an SMC EtherEZ 8416 card?
Powers is offline   Reply With Quote
Old 04-04-2004, 08:57 PM   #11
Low Bitrate
 
Join Date: Feb 2001
Posts: 78
The DOS networking tutorials are still on wown.com, but the pages are kind of buried. Here's a link to a page that gives instructions on how to get TCP/IP up and running:
http://www.wown.com/j_helmig/doscltcp.htm
__________________
http://thecoldfront.com
bh76 is offline   Reply With Quote
Old 04-04-2004, 09:21 PM   #12
Maximum Bitrate
 
Hcomplyr's Avatar
 
Join Date: Nov 2003
Location: Salem MA USA
Posts: 510
try www.driverguide.com

Username "drivers"
Password "all"
Hcomplyr is offline   Reply With Quote
Old 04-04-2004, 09:29 PM   #13
Newbie
 
Join Date: Dec 2003
Posts: 18
Ya, I've tried almost everything, I can't get the thing to share.

Is there another way to connect a Windows XP or 2000 machine to a DOS machine that would be able to run all the time, check for connections on bootup, if there are none, continue to MPXPLAY?

I'm not much of a coder, still doing senior 3 computer science, and don't know much about interpretting input signals.

The only other thing I could think of is a serial link or parallel link, but i don't know what programs would do that, and especially from XP to DOS
Powers is offline   Reply With Quote
Old 04-04-2004, 10:02 PM   #14
Low Bitrate
 
Join Date: Feb 2001
Posts: 78
There are a number of things that can go wrong, it's just a matter of narrowing it down.

First things first, can you ping other computers from the DOS machine?
__________________
http://thecoldfront.com
bh76 is offline   Reply With Quote
Old 04-05-2004, 10:23 AM   #15
Newbie
 
Join Date: Dec 2003
Posts: 18
I ran a superdisk test and it passed all the LAN tests, I just can't get on the network. I'm not sure whether it's because TCPIP isn't enabled, or what, but i'll keep pluggin away at it.
Powers is offline   Reply With Quote
Sponsored links
Advertisement
 
Advertisement
Reply

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 Off
Refbacks are Off

Similar Threads
Thread Thread Starter Forum Replies Last Post
XP to 98lite file transfer error jakeep Software & Software Development 2 04-04-2003 06:11 AM
win me worth it? schrodos Software & Software Development 25 04-27-2002 08:53 AM
Vote Skinny Boy off the Forum?????? radioman193 Mp3car Forum Suggestions/Comments 27 09-17-2001 12:42 PM
Reading CDRWs in Dos redscar Software & Software Development 20 08-21-2001 03:00 AM
Okay, guys, I need some help.... dapepster Software & Software Development 18 08-20-2001 03:31 AM


All times are GMT -5. The time now is 01:47 PM.


Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.2.0
Copyright © 1999 - 2008 Mp3Car.com Inc.Ad Management by RedTyger
Message Board Statistics