ioChem-BD - Shell Client

Setup Guide for Linux, macOS, and Windows

Linux
1 Download the Shell Client

Download the latest version of the ioChem-BD Shell Client from the Create module.

Download Shell Client
2 Extract the Archive

Extract the downloaded archive to your preferred location:

unzip shell.zip
3 Run the Shell Client

Navigate to the extracted directory and run the client:

cd shell
. ./start-rep-shell
Note: The Linux version comes pre-configured and ready to use. No additional setup is required.
macOS
1 Download the Shell Client

Download the latest version of the ioChem-BD Shell Client from the Create module.

Download Shell Client
2 Check Your Architecture

Determine if your Mac uses Intel (x64) or Apple Silicon (ARM64):

uname -m

Output will be x86_64 for Intel or arm64 for Apple Silicon.

3 Download Compatible JRE

Download the JRE 17 - LTS appropriate for your Mac's architecture (aarch64 or x64).

Pick the .pkg version and install it globally on your machine.

Download JRE
4 Remove JRE Folder

Extract the shell client archive, then remove the bundled JRE folder so it will use the system installed one:

unzip shell.zip
cd shell
rm -rf jre
5 Run the Shell Client
. ./start-rep-shell
Important: The JRE version must match the one bundled with the shell client (typically Java 17).
Windows
1 Install Windows Subsystem for Linux (WSL)

Open PowerShell as Administrator and run:

wsl --list --online

This command lists the available Linux distributions ready to install.

2 Install Ubuntu 24.04

If you want specifically Ubuntu 24.04, install it from the Microsoft Store or via PowerShell:

wsl --install -d Ubuntu-24.04

Follow the prompts to set up your Ubuntu username and password.

3 Download the Shell Client

Download the Shell Client from the Create module to your Windows machine.

Download Shell Client
4 Extract the Shell Client

Extract the downloaded archive to your preferred location:

tar -xf shell.zip
5 Copy to WSL Environment

Copy the downloaded file to your WSL Ubuntu home directory:

# From Windows PowerShell, UI
# or Command Prompt
wsl --cd ~ --exec cp -fr /mnt/c/Users/user/Downloads/shell

Replace /mnt/c/Users/user/Downloads// with the actual path to your extracted folder file.

6 Extract and Run in WSL

Open your WSL Ubuntu terminal and run:

# Navigate to the directory
cd # Extract the archive
unzip shell.zip
# Navigate to the directory
cd shell
# Run the shell client . ./start-rep-shell
Tip: You can access your Windows files from WSL at /mnt/c/ for C: drive, /mnt/d/ for D: drive, etc.

Common Issues & Troubleshooting

If you encounter a "Permission denied" error when trying to run the shell client, make the script executable:

chmod +x start-rep-shell

If you see errors related to Java version incompatibility, ensure you're using the correct JRE version (Java 17).

You can check the bundled JRE version with:

./jre/bin/java -version

If you're having trouble connecting to the ioChem-BD server:

  • Check your network connection
  • Verify the server URL is correct
  • Ensure your credentials are valid
  • Check if your firewall is blocking the connection