How do I Install Slackware Linux version 13.13 using a bootable USB stick under Unix or Linux operating systems?
First, you need to download Slackware Linux version 13.13 using the wget command as follows:
$ cd /tmp
$ wget ftp://slackware.osuosl.org/pub/slackware/slackware-13.37/usb-and-pxe-installers/usbboot.img
To create a bootable usb stick, enter:
# cd /tmp
# dd if=usbboot.img of=/dev/sdc bs=512
Where,
- usbboot.img - It is a 30MB small USB boot image that you can use to boot into the Slackware setup program.
- /dev/sdc - USB stick
BIOS Boot Options
Your computer BIOS must support booting from USB HDD.
- Start your computer.
- Press [DEL] or [F2] to enter into BIOS setup ( this step is dependent on the type of computer you have, see your computer manual for more info).
- Make sure boot option is set to USB Hard disk.
- Plug the USB stick into your computers USB slot
- Boot the system up.
The Slackware Linux installer will start. Log in as root. Use fdisk or cfdisk command to create partitions:
# cfdisk /dev/sda
OR
# fdisk /dev/sda
To start the install type setup command:
# setup
You can now install packages from a CDROM, hard disk or network locations.
References:
- Slackware Linux project.
- 30 Handy Bash Shell Aliases For Linux / Unix / Mac OS X
- Top 30 Nmap Command Examples For Sys/Network Admins
- 25 PHP Security Best Practices For Sys Admins
- 20 Linux System Monitoring Tools Every SysAdmin Should Know
- 20 Linux Server Hardening Security Tips
- Linux: 20 Iptables Examples For New SysAdmins
- Top 20 OpenSSH Server Best Security Practices
- Top 20 Nginx WebServer Best Security Practices
- 20 Examples: Make Sure Unix / Linux Configuration Files Are Free From Syntax Errors
- 15 Greatest Open Source Terminal Applications Of 2012

- My 10 UNIX Command Line Mistakes
- Top 10 Open Source Web-Based Project Management Software
- Top 5 Email Client For Linux, Mac OS X, and Windows Users
- The Novice Guide To Buying A Linux Laptop













{ 1 comment… read it below or add one }
Thank you Vivek,
I’ve been looking for a quick guide to creating a bootable slack USB for a while now.
You have some of the best quick unix/linux guides in the web! great job.