I used “df -h” to check my Linux partition and saw “/dev/sla2,3,4”.
What is “sla” device?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Run
ls -l /dev/sla2,3,4and it will display two numbers right after user and group fields. These are the device major and minor numbers (they only exist for device special files). Then, check with http://www.mjmwired.net/kernel/Documentation/devices.txt or another similar list to what device class the major number corresponds. If this list doesn’t answer your question, you can check the kernel sources on the web, a complete list of major/minor numbers and their meanings must be in there in one form or another.