Welcome to the Cisco Academy for Vision Impaired Linux Wiki. |
Main /
UsingGRMLForTroubleshootingAndImagingThis page will show you how to use GRML | for troubleshooting and imaging your computer. GRML is distributed in the form of a live cd. The implication of this is that you can place the cd into your computer's cd-rom drive and boot the computer. This however is dependent on the following factors.
I am going to assume that you are using Windows 7.
Navigate to http://www.grml.org and choose the "download" link.
Note: I had downloaded the distribution that I thought was for both 32bit and 64bit architectures. When I tried booting from it on a 32bit computer, I was told that I was using an incorrect distribution so download the specific distribution for your system architecture.
If using a hardware synthesizer, you follow a similar process except that you do not need the espeakup connector. For example, if you are launching the apollo synthesizer, type modprobe speakup_apollo Ensure that the apollo synthesizer is switched on. You will be told that the apollo has been found and you will hear the apollo talking. You now have a functioning Linux system. Be warned, you will be unable to save any changes you make since the system is purely running from memory. Listing thingsThe "ls" command is used to list directories and files. There are several parameters that can be specified on the commandline to customize the output of the ls command. Various troubleshooting tasksGetting data about PCI devicesUse the lspci command to list all pci devices. Seeing what network interfaces are presentifconfig -a warning: This command can output a lot of information. Querying your network card for its capabilitiesethtool ETH0 -S where eth0 is the name of the interface you want information for.you can pipe this to a file to save to disk. Finding what drives are attachedls /mnt The above command will give you a list of devices that can be mounted. Most IDE drives show as SCSI and are labeled as /sda, /sdb etc. The partitions on the drives are nu,mbered so to access the first partition on the first drive, you would need to access /sda1. If you need to list only the hard drives, then try the following command. ls /mnt/sda* Mounting drivesYou need to mount a drive before you can write to it. In the case of windows drives, these are usually formatted as NTFS. To mount a NTFS drive, you need to issue the following command. Note: I assume that you want to mount sdc1 which is a USB drive. mount.ntfs-3g /dev/sdc1 /mnt/sdc1 If you are returned to the shell, the drive has been mounted successfully. If not, you will get an error message. From GRML version 11, you also see a list of volume labels instead of just sda, sdb etc. So, you can issue a command like mount.ntfs-3g /dev/datastore /mnt/datastore. |