Skip to content

Commit fa30f42

Browse files
docs: add installation instructions for linux and windows
1 parent 98fc9cf commit fa30f42

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

README.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,30 @@ FBQueue addresses the gap between manual script execution and heavy enterprise s
2424

2525
## 🚀 Quick Start
2626

27+
### Installation
28+
29+
#### Linux
30+
Download the pre-built static binary and place it in your `$PATH`:
31+
32+
```bash
33+
# 1. Download and extract
34+
wget https://github.com/ForblazeProject/fbqueue/releases/download/v0.9.0/fbqueue-linux-x64.tar.gz
35+
tar -xzvf fbqueue-linux-x64.tar.gz
36+
37+
# 2. Move to your bin directory
38+
mkdir -p ~/bin
39+
mv fbqueue ~/bin/
40+
41+
# 3. (Optional) Create PBS-style symbolic links
42+
ln -s ~/bin/fbqueue ~/bin/qsub
43+
ln -s ~/bin/fbqueue ~/bin/qstat
44+
ln -s ~/bin/fbqueue ~/bin/qdel
45+
```
46+
47+
#### Windows
48+
1. Download `fbqueue-windows-x64.zip` from [Releases](https://github.com/ForblazeProject/fbqueue/releases).
49+
2. Extract the ZIP and move `fbqueue.exe` to a folder in your `Path`.
50+
2751
### Job Submission (`sub`)
2852
FBQueue automatically handles path prefixes and shell selection.
2953

0 commit comments

Comments
 (0)