How can I mount an .iso file in a .bat file on Linux for Dolphin?

0
0
Asked By MysticPineapple42 On

Hey folks! I'm trying to run the SSBB Legacy mod on Dolphin, and I've hit a snag. It seems like I need to include the .iso file of the original game in a .bat file for everything to work, but I'm having trouble doing that. I've downloaded Wine, but it hasn't resolved the issue either. I'm using a Steam Deck, if that makes any difference. Any help would be greatly appreciated! Here's a video that explains what I'm trying to accomplish: https://youtu.be/GjuPzUQ-gD8?si=l2LukkowHG1Pa-Dl

1 Answer

Answered By TechieTurtle88 On

It sounds like you're a bit confused about how .iso files and .bat files work. Basically, an .iso is just a disk image, and a .bat file is a script used to automate processes. You can create a shell script that mounts the .iso file before running applications. Here's a simple example of a shell script you could use:

```bash
#!/bin/bash
mkdir $HOME/iso
mount $HOME/image.iso $HOME/iso -o loop
cd $HOME/iso
# Now run any commands you need here
```

If you want to use Wine, you can start with a command similar to this to run your .bat file:
```bash
wine cmd.exe /c FILENAME.bat
```

CuriousCoder99 -

Thanks for the shell script example! I'll give that a shot. Just to clarify, would I need to modify the batch file to run properly in Wine?

Related Questions

Raffle Ticket Generator

Sudoku Solver

Tambola Number Generator

Tambola Ticket Generator

UK Bingo Card Generator

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.