Welcome to the NVMe-CLI Internship at IBM!
This guide contains all essential links, credentials, setup steps, development tooling, and terminal commands you will use throughout your internship.
Log your hours every Friday before Noon
- 🔗 https://sf-wz-prd-p2-4snxii8t.workzonehr.cfapps.us10.hana.ondemand.com/site#workzone-home&/home?source=from_menu
- 📍 Navigation:
HR Zone → Record Your Time → Apply Planned Time - 📅 Frequency: Weekly
- 🔗 https://yourlearning.ibm.com/activity/PLAN-FA5EE89ABD92
- ⏳ Complete before internship ends
- https://w3.ibm.com
- https://w3.ibm.com/w3publisher/new-hire-community
- https://w3.ibm.com/w3publisher/bob/
- 🔗 https://prod.stela.dal.app.cirrus.ibm.com/plab/nims
- 📘 Used to retrieve lab passwords
- 🔒 Do NOT share credentials
- 🌐 https://ltcvhmc9b.ltc.tadn.ibm.com/hmc/connect
- 👤 Username:
hscroot - 🔑 Password: Lab password
- 📘 Used for system and hardware management
⚙️ NIM (Network Installation Management) 🔗 https://pages.github.ibm.com/Halbedaiwi/nim-installation/
📅 Intern Plan & Schedule
🔗 https://github.ibm.com/drc/2026-intern-plans/blob/main/nvme-cli-coverity/INTERN-SCHEDULE.md
🧩 NVMe-CLI Project Repository
🔗 https://github.com/linux-nvme/nvme-cli
ssh root@<ipaddress>
ex - ssh fhassan@ltcrain119-lp6.ltc.tadn.ibm.com
ssh <your_username>@<lpar_hostname>
ex - ssh root@ltcrain65-lp4.ltc.tadn.ibm.com
ibm-dnf.sh - important subscription resource
pwd # Show current directory
cd <dir> # Change directory
cd .. # Go back one directory
cd ~ # Go to home directory
cat <file> # View file contents
less <file> # Scroll file
vim <file> # Advanced editor
nano <file> # Beginner editor
ls # List files
ls -la # Detailed list
mkdir <dir> # Create directory
rm <file> # Remove file
cp <src> <dst> # Copy file
mv <src> <dst> # Move/rename
hostname -I # Show IP address
whoami # Current user
df -h # Disk usage
top # Running processes
CLANG tools (once lpar is set up)
cd /root/nvme-cli
rm -rf .build
CC=clang CXX=clang meson setup .build
ninja -C .build scan-build