LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Networking
User Name
Password
Linux - Networking This forum is for any issue related to networks or networking.
Routing, network cards, OSI, etc. Anything is fair game.

Notices


Reply
  Search this Thread
Old 09-03-2007, 12:35 AM   #1
okos
Member
 
Registered: May 2007
Location: California
Distribution: Slackware/Ubuntu
Posts: 609

Rep: Reputation: 38
Remote cd burn on to xp box can it be done?


Hi all!
I use samba from my linux box to my wife's xp box for file share.
Is it possible to use my wife's xp box to burn cds via my slackware box? In other words, can I burn cd's through a remote computer?

thanks
okos
 
Old 09-03-2007, 01:16 AM   #2
Bruce Hill
HCL Maintainer
 
Registered: Jun 2003
Location: McCalla, AL, USA
Distribution: Arch, Gentoo
Posts: 6,940

Rep: Reputation: 129Reputation: 129
Yes, if you setup PuTTy on the XP box, then you can burn via CLI.
 
Old 09-03-2007, 01:23 AM   #3
okos
Member
 
Registered: May 2007
Location: California
Distribution: Slackware/Ubuntu
Posts: 609

Original Poster
Rep: Reputation: 38
Quote:
Originally Posted by Bruce Hill View Post
Yes, if you setup PuTTy on the XP box, then you can burn via CLI.
Putty is a client program right? Wouldn't my xpbox be the server (remote)?
Please excuse my ignorance.
What is CLI?
How would one set this up?
 
Old 09-03-2007, 01:50 AM   #4
Bruce Hill
HCL Maintainer
 
Registered: Jun 2003
Location: McCalla, AL, USA
Distribution: Arch, Gentoo
Posts: 6,940

Rep: Reputation: 129Reputation: 129
Hey, we need to get you some Linux-education, right?

Okay, here's what I'll offer ...

<Linux> Google
(Google is your friend, now in a Linux frame of mind ... no Windoze there)

The Revised Slackware Book Project
(The Slack Book)

Introduction to Linux - A Hands on Guide
(Applicable to learning Linux by doing some things)

Eric Hameleers (Alien)’s Wiki pages
(This man has a great Wiki and writes the best SlackBuild scripts)

How To Ask Questions The Smart Way
(Not trying to be smart alec, but if you'll read it all you'll learn tons about this Linux world)

PuTTY is a Telnet and SSH client. (Use this one -> http://the.earth.li/~sgtatham/putty/.../x86/putty.exe )

CLI is command line interface. That's what you have in a terminal -- xterm, rxvt, konsole, etc. From PuTTy you ssh into your Slackware box, then you are using the CLI on that Slackware machine. Might need a command or two for burning in CLI ...
Code:
To burn an image of a CD or DVD to the hard drive:
bash-2.05b# dd if=/dev/hda of=namethecd.iso (change /dev/hda to your device)

To make a CD from an ISO image:
bash-2.05b# cdrecord -v -eject driveropts=burnfree dev=/dev/hda /path/to/file.iso (change /dev/hda to your device)

To blank a DVD+RW:
bash-2.05b# growisofs -Z /dev/dvd=/dev/zero (change /dev/dvd to your device)
and then
bash-2.05b# dvd+rw-format -force -lead-out /dev/dvd

To erase a CD-RW:
bash-2.05b# cdrecord -v dev=/dev/hda blank=fast (change /dev/hda to your device)

To burn an ISO to DVD:
bash-2.05b# growisofs -dvd-compat -Z /dev/hd*=image.iso
Other people will come and offer links and other stuff, too. You can do all that from PuTTy in Windoze on the Slackware box.

Last edited by Bruce Hill; 09-03-2007 at 01:54 AM. Reason: PuTTy link ...
 
Old 09-03-2007, 02:16 AM   #5
soroccoheaven
Member
 
Registered: Jul 2007
Distribution: mandrake Mandriva Redhat CentOS Slackware
Posts: 221

Rep: Reputation: 30
hello,
i am having the same problem ..got my cd burner with linux and want to burn cd's from xp using Nero is it possible ? if yes how to do this because i cant see the writer in nero's recorder list.I can access the cd writer from my xp machine (samba).

Thanks
 
Old 09-03-2007, 03:49 AM   #6
Bruce Hill
HCL Maintainer
 
Registered: Jun 2003
Location: McCalla, AL, USA
Distribution: Arch, Gentoo
Posts: 6,940

Rep: Reputation: 129Reputation: 129
Afaik it is not possible for a software program in a Windows OS to burn to a device on another computer. That is what you're asking to do with Nero.

There is a Nero version for Linux, though I've been satisfied with CLI, and if for some strange reason there was a need for a GUI, then K3B worked fine.

Actually Slackware is much more efficient burning from CLI than Windows is with it's version of Nero. The two DVD burners in this workstation can both burn at the same time, while other apps are running, without any noticeable performance loss. In Windows, burning one CD with Nero means waiting until it's finished to do just about anything else.
 
Old 09-03-2007, 04:05 AM   #7
soroccoheaven
Member
 
Registered: Jul 2007
Distribution: mandrake Mandriva Redhat CentOS Slackware
Posts: 221

Rep: Reputation: 30
Thanks Bruce, ya ..k3b is fine ..and i dont need any more software for linux ..what i wanted is for windows xp to share linux attached cd writer for now i will look more about the cli commands.

reagrds
 
Old 09-03-2007, 04:27 AM   #8
Bruce Hill
HCL Maintainer
 
Registered: Jun 2003
Location: McCalla, AL, USA
Distribution: Arch, Gentoo
Posts: 6,940

Rep: Reputation: 129Reputation: 129
For PuTTY, you just download it from that link I gave above ^^^. I put it on my XP quick launch bar. Then all you need to do is open it, type in the IP address of the Slackware comp on your LAN, and hit enter. The first time you will have to answer yes to cache the certificate (or whatever), and then give the username and password. NB: This is not a new username/passwd, use the normal user on your Slackware box. Then you use Slackware from CLI just as if you were on the Slackware box.

Maybe you want to experiment with some of those CLI commands first from the Slackbox? Need more help, write back.

Using the CLI might feel strange to someone if they've basically/only used GUI in Windows. But once you do some things with it, you'll find it's more powerful than a GUI, and doesn't hide what's actually happening. The CLI is what really sold me on Linux when I couldn't figure out which apps would replace what I was doing in Windows.
 
Old 09-03-2007, 04:32 AM   #9
soroccoheaven
Member
 
Registered: Jul 2007
Distribution: mandrake Mandriva Redhat CentOS Slackware
Posts: 221

Rep: Reputation: 30
i am already using Putty with winxp and will revert back in case of any problem ..thanks
 
  


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
Remote Access to Windows Box hkillen Linux - Networking 4 09-20-2006 08:01 AM
send syslogs of aix box to remote rhel box gsr_kashyap AIX 2 04-05-2006 06:32 AM
best distro for slow rip/burn box? klancek Linux - General 4 03-18-2004 06:45 PM
How do I 'log in as root' on a remote box? new player 2 Linux - Newbie 9 09-20-2003 05:43 PM
connecting to X from remote box plisken Linux - General 5 05-09-2003 12:28 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Networking

All times are GMT -5. The time now is 10:05 PM.

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