Damn Small Linux (DSL) Forums
Welcome,
Guest
. Please
login
or
register
.
December 04, 2023, 12:23:30 PM
1 Hour
1 Day
1 Week
1 Month
Forever
Login with username, password and session length
News
The new DSL forums are now open.
Stats
11609
Posts in
311
Topics by
291
Members
Latest Member:
mik3ca
Search:
Advanced search
Get
The Official Damn Small Linux Book
.
Great VPS hosting provided by
Tektonic
Damn Small Linux (DSL) Forums
Damn Small Linux
Other Help Topics
USB stick issue
« previous
next »
Pages:
[
1
]
Author
Topic: USB stick issue (Read 21618 times)
Borzalex
Newbie
Posts: 5
USB stick issue
«
on:
December 22, 2016, 06:28:25 PM »
Hello! I have DSL 4.11 rc2 installed on my HDD. When I try to mount the USB stick with a command
sudo mount -t vfat /dev/sda1 /mnt/usbflash -o iocharset=utf8,codepage=866,rw
I get the following error:
/dev/sda1 is not a valid block device
Is there any other way to mount the USB stick?..
«
Last Edit: December 22, 2016, 07:13:20 PM by Borzalex
»
Logged
My PC:
CPU Pentium II 400 MHz
Motherboard GA-6VX
Video Nvidia RIVA TNT2
Sound CM8738
Memory 128 MB SDRAM
CNK
Sr. Member
Posts: 269
Re: USB stick issue
«
Reply #1 on:
December 23, 2016, 08:58:42 PM »
"sudo mount /dev/sda1 /mnt/usbflash" should be enough, the error indicates that the USB drive is not being detected, or perhaps is being assigned to another device ID due to the (mis)detection of some other unreadable drive as sda1.
Perhaps you've already tried mounting outher /dev/sd(x)1 in other locations. If the USB drive is being detected at all, it should show up in the list of use devices presented when you execute the command "lsusb -v". If not, you may have a USB driver problem.
Also note that DSL usually tries to automatically add fstab entries linking /dev/sd(xx) entries to /mnt/sd(xx), such that "mount /dev/sda1" would by default mount it at /mnt/sda1. Your more complete command should work regardless of this though.
Logged
Borzalex
Newbie
Posts: 5
Re: USB stick issue
«
Reply #2 on:
December 24, 2016, 12:35:45 PM »
Well, I didn't mount anything on sda1 before. And when I enter command
lsusb
or
lsusb -v
nothing happens. I do remember that USB worked fine earlyer when there was Windows XP installed... Maybe i need to install additional drivers for my motherboard?
«
Last Edit: December 24, 2016, 12:38:18 PM by Borzalex
»
Logged
My PC:
CPU Pentium II 400 MHz
Motherboard GA-6VX
Video Nvidia RIVA TNT2
Sound CM8738
Memory 128 MB SDRAM
CNK
Sr. Member
Posts: 269
Re: USB stick issue
«
Reply #3 on:
December 24, 2016, 10:24:41 PM »
If nothing appears in lsusb, that means the USB drivers are not working or haven't loaded.
try "lspci" (or look in the "pci" tab of the "system stats" tool) and see whether any USB controllers are shown. If so, there must be a driver problem and you should check online to see if the USB controller model reported on the lspci listing has any known workarounds or additional drivers for Linux.
If no USB controller is shown, check that the USB controller hasn't been accidentally disabled in the BIOS settings. Failing that, it would appear that either the USB controller has failed somehow since you last tested it, or there is a bug in the Linux kernel affecting your motherboard.
Logged
Borzalex
Newbie
Posts: 5
Re: USB stick issue
«
Reply #4 on:
December 25, 2016, 06:36:55 PM »
I checked the BIOS and USB was disabled there. So I turned on the USB, but now when I'm trying to mount USB stick i get the following error:
relocation error: mount: undefined symbol: blkid_known_fstype
Logged
My PC:
CPU Pentium II 400 MHz
Motherboard GA-6VX
Video Nvidia RIVA TNT2
Sound CM8738
Memory 128 MB SDRAM
CNK
Sr. Member
Posts: 269
Re: USB stick issue
«
Reply #5 on:
December 25, 2016, 09:33:57 PM »
Hmm, unless there's a mistake in your mount command this seems to mean that DSL can't read the file system on the USB drive.
Check that the USB drive isn't formatted in exFAT, NTFS, or anything other than FAT32, FAT16, or a Linux file system. In DSL you can use "sudo fdisk -l" to list the partition structure of all the drives. If "HPFS/NTFS" is shown in the "system" section of the listing for the USB drive, it will probably need to be reformatted for use with DSL.
You might want to post the result of "sudo fdisk -l" here.
Logged
Borzalex
Newbie
Posts: 5
Re: USB stick issue
«
Reply #6 on:
December 26, 2016, 08:59:35 AM »
sudo fdisk -l shows this:
Disk /dev/hda: 20.0 GB, 20060135424 bytes
255 heads, 63 sectors/track, 2438 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/hda1 1 31 248976 82 Linux swap
/dev/hda2 * 32 2438 19334227+ 83 Linux
Logged
My PC:
CPU Pentium II 400 MHz
Motherboard GA-6VX
Video Nvidia RIVA TNT2
Sound CM8738
Memory 128 MB SDRAM
CNK
Sr. Member
Posts: 269
Re: USB stick issue
«
Reply #7 on:
December 26, 2016, 08:58:39 PM »
OK, sorry, it looks like the USB drive still isn't being detected.
Put the USB stick in before turning on the computer. After it boots up, try "lsusb -v" again. If nothing's there, there may still be a driver/hardware problem.
If the USB stick is identified there, try "fdisk -l" again. If it returns the same thing as before then there may be some issue with hotplug (the USB control software), if you did a "Hard Disk" installation (as opposed to a "frugal" installation) try booting from the CD and see whether USB works then. If so, a reinstall may be the simplest solution.
You might also check whether there are any USB related errors listed in dmesg (enter command "dmesg | less" or "dmesg | grep usb" in a terminal).
Logged
Borzalex
Newbie
Posts: 5
Re: USB stick issue
«
Reply #8 on:
December 29, 2016, 09:01:54 PM »
Reinstall helped, thank you.
Logged
My PC:
CPU Pentium II 400 MHz
Motherboard GA-6VX
Video Nvidia RIVA TNT2
Sound CM8738
Memory 128 MB SDRAM
Rapstultpap
Newbie
Posts: 4
USB stick issue
«
Reply #9 on:
August 15, 2017, 03:55:06 AM »
USB is usually 5 volts. What are you using to regulate the voltage of your battery pack to that level?
Cheers
Brian
Logged
Pages:
[
1
]
« previous
next »
Jump to:
Please select a destination:
-----------------------------
Damn Small Linux
-----------------------------
=> Site News
=> Release Candidates
=> User Feedback
=> DSL Tips and Tricks
=> USB booting
=> DSL Ideas and Suggestions
=> DSL Embedded
=> HD Install
=> Laptops
=> Other Help Topics
-----------------------------
MyDSL Extensions
-----------------------------
=> The Testing Area
=> Apps
=> Games
=> Gtk2
=> Multimedia
=> Net
=> System
=> Themes
=> Window Managers
=> Extension Development
-----------------------------
DSL Not
-----------------------------
=> DSL-N
-----------------------------
Non-DSL Topics
-----------------------------
=> water cooler