Linux Format

Answers

Q Piping DVDs

I would like to do be able to build DVD-R images with genisoimage on one computer and burn them with wodim on another computer, a “burnerpc”. I build a ~/DATA.iso genisoimage. When I copy it to the burnerpc with scp and then go there via ssh then I can burn it with $ wodim -v -eject speed=8 dev=/dev/sr0 / DATA.iso

I would like to do this on the fly. Is there a way (maybe with a pipe) to burn it from my home PC via ssh ?

Ingo Rodowsky

A It although ’s possible you to have do what to be you sure want the , bandwidth between the two machines is sufficient to keep up the flow of data required by the burner. Otherwise you risk buffer underruns and coasters. A decent wired network should handle this with no problems, but using a wireless connection is more risky. It’s not just the lower bandwidth of wireless, but that it’s shared and outside of your control. All it takes is for someone else in the household to start streaming video and your data rate will slow. This can even be caused by non-Wi-Fi devices (nearby microwaves) causing interference on the channel. I wouldn’t consider doing this if the two computers are remote from one another, using an internet connection.

You’re reading a preview, subscribe to read more.

More from Linux Format

Linux Format1 min read
Vector Vexations
Why does MySQL not support vectors in its community edition? Generative AI is the hot topic in tech. GenAI relies on vector data. Yet Oracle has no plans to support vectors in the community edition of MySQL. If you want to try out vector data with ot
Linux Format5 min read
Tips For Managing Docker Containers
Everyone knows how containers revolutionised application building and deployment. Using a E disposable stack of containers that make up an app that aren’t using the docker-compose command to manage the stack are missing a trick. It allows the shippin
Linux Format1 min read
Wine For Wayland
2023 was a great year for the Wayland driver for Wine. The goal was to move forward from the experimental phase and make the driver a proper upstream component. A year later, after several merge requests, many people are now already able to use the l

Related