Is that all?
Either you have removed a lot of information from the lsblk output or you are using some strange OS that is not Raspbian.
You don't have any mounted partitions by the look of it. Please list
all of the output from lsblk and
all the output from "df", or "mount", and someone may be able to help.
A normal Raspbian install should produce something like this (the sd card is mmcblk0 and a usb flash drive is sda).
Code: Select all
pi@pi3:~ $ lsblk
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT
sda 8:0 1 28.9G 0 disk
└─sda1 8:1 1 28.9G 0 part
mmcblk0 179:0 0 14.9G 0 disk
├─mmcblk0p1 179:1 0 41.5M 0 part /boot
└─mmcblk0p2 179:2 0 14.9G 0 part /
pi@pi3:~ $
Code: Select all
pi@pi3:~ $ df
Filesystem 1K-blocks Used Available Use% Mounted on
/dev/root 15290576 11950244 2656132 82% /
devtmpfs 443792 0 443792 0% /dev
tmpfs 448400 0 448400 0% /dev/shm
tmpfs 448400 45208 403192 11% /run
tmpfs 5120 0 5120 0% /run/lock
tmpfs 448400 0 448400 0% /sys/fs/cgroup
tmpfs 448400 2424 445976 1% /tmp
tmpfs 65536 9080 56456 14% /var/log
/dev/mmcblk0p1 41853 21328 20525 51% /boot
tmpfs 89680 0 89680 0% /run/user/1000
/dev/sda1 30294704 19262144 11032560 64% /media/backup
pi@pi3:~ $
You can see how the raw disk is sda and the partitions containing file systems are sda1 sda2 etc.