Do you need help with Lab Software, Hardware, Network, Access, Disk Quota?
Complete the lab help form and email it to cslabadmin@cs.iusb.edu or call 574-520-4439 or stop by the Lab Supervisor office in NS 203.
Complete the lab help form and email it to cslabadmin@cs.iusb.edu or call 574-520-4439 or stop by the Lab Supervisor office in NS 203.
We have the gdb debugger installed, as well as Eclipse, which is an integrated IDE with a GUI similar to VisualStudio and contains a debugger.
gdb is the GNU debugger and can be run directly from the command line (terminal).
A Linux installation CD or DVD can be created in any operating system.
First, acquire a CD/DVD image, which is usually a disk image file with the extension .iso, from any trusted distribution site. Here are some of the popular distributions:
Then follow these steps to create the CD
Check for Linux compatibility. Many are not supported by Linux.
In most cases, plugging in the USB drive or CD will cause it to be automatically mounted. The icon will appear on the desktop in that case.
The mount point is most likely goind to be /MEDIA/usb or /MEDIA/CD or some other similar name.
Use the lpr command followed by the printer name and the file to print. The printers available in our labs are cslp1, cslp2, and cslp3. Currently printing can only be done from one of the lab workstations, so cs01 through cs06 have no access to the printers. The use of printers is restricted the following way:
cslp1 - workstations in NS 207A
cslp2 - workstations in NS 207B
cslp3 - workstations in NS 209
The print command can be used the following way, where the option –P specifies the printer - see above:
lpr -Pcslp1 your-filename-to-print
To cancel printing, enter lpq and the printer name with the –P option. This gives you the job’s queue number. Then enter lprm, the printer name with the –P option, and the job number to remove.
Example. Enter lpq & printer at prompt: | lpq -Pcslp1 | ||||
Output show jobs: | Rand | Owner | Job | Files | Total Size |
1st | bgriff | 4 | cs.cpp | 408 bytes | |
To remove job #4 enter: | lprm –Pcslp1 4 |