Results 1 to 6 of 6

Thread: Ubuntu v9.04 won't save Anything on USB Flash Drive

  1. #1
    Join Date
    Mar 2008
    Location
    Hong Kong
    Beans
    18
    Distro
    Ubuntu 8.10 Intrepid Ibex

    Ubuntu v9.04 won't save Anything on USB Flash Drive

    I've installed v9.04 on a 16 GB USB flash drive. However, it wouldn't save any configuration, updates or new software. Does anyone know why?

  2. #2
    Join Date
    Aug 2006
    Beans
    166
    Distro
    Kubuntu 11.10 Oneiric Ocelot

    Re: Ubuntu v9.04 won't save Anything on USB Flash Drive

    You might have set the flash to read-only (check whether you have a button with a lock/unlock symbol on the flash).

    The filesystem might also be mounted read-only. Check what the "mount" command gives in a terminal.
    The most exciting phrase to hear in science, the one that heralds new discoveries, is not "Eureka!" but "That's funny..."' - Isaac Asimov

  3. #3
    Join Date
    Mar 2008
    Location
    Hong Kong
    Beans
    18
    Distro
    Ubuntu 8.10 Intrepid Ibex

    Re: Ubuntu v9.04 won't save Anything on USB Flash Drive

    My flash drive doesn't have a lock.

    If the filesystem is mounted as read-only, how do I change it to read and write. I never had this problem when I was using v8.04.

  4. #4
    Join Date
    Jul 2008
    Location
    /$home
    Beans
    1,074
    Distro
    Ubuntu Development Release

    Re: Ubuntu v9.04 won't save Anything on USB Flash Drive

    Try running a check of the drive ie
    First check to see what the media is assigned

    Code:
    sudo fdisk -l
    (lowercase L)
    if it is assigned /dev/sdb1, then try this command:
    Code:
    sudo dosfsck -a /dev/sdb1
    then test flash again


    https://help.ubuntu.com/community/Mo...%20read%20only

    https://help.ubuntu.com/community/TestingStorageMedia
    I'm not afraid of storms, for I sail my own ship

  5. #5
    Join Date
    Mar 2008
    Location
    Hong Kong
    Beans
    18
    Distro
    Ubuntu 8.10 Intrepid Ibex

    Re: Ubuntu v9.04 won't save Anything on USB Flash Drive

    Quote Originally Posted by Triptol View Post
    You might have set the flash to read-only (check whether you have a button with a lock/unlock symbol on the flash).

    The filesystem might also be mounted read-only. Check what the "mount" command gives in a terminal.
    Results:-

    ubuntu@ubuntu:~$ mount
    proc on /proc type proc (rw)
    sysfs on /sys type sysfs (rw)
    tmpfs on /lib/modules/2.6.28-11-generic/volatile type tmpfs (rw,mode=0755)
    tmpfs on /lib/modules/2.6.28-11-generic/volatile type tmpfs (rw,mode=0755)
    tmpfs on /lib/init/rw type tmpfs (rw,nosuid,mode=0755)
    varrun on /var/run type tmpfs (rw,nosuid,mode=0755)
    varlock on /var/lock type tmpfs (rw,noexec,nosuid,nodev,mode=1777)
    udev on /dev type tmpfs (rw,mode=0755)
    tmpfs on /dev/shm type tmpfs (rw,nosuid,nodev)
    devpts on /dev/pts type devpts (rw,noexec,nosuid,gid=5,mode=620)
    rootfs on / type rootfs (rw)
    /dev/sdb1 on /cdrom type vfat (rw,fmask=0022,dmask=0022,codepage=cp437,iocharset =iso8859-1)
    /dev/loop0 on /rofs type squashfs (ro,noatime)
    fusectl on /sys/fs/fuse/connections type fusectl (rw)
    tmpfs on /tmp type tmpfs (rw,nosuid,nodev)
    binfmt_misc on /proc/sys/fs/binfmt_misc type binfmt_misc (rw,noexec,nosuid,nodev)
    gvfs-fuse-daemon on /home/ubuntu/.gvfs type fuse.gvfs-fuse-daemon (rw,nosuid,nodev,user=ubuntu)
    ubuntu@ubuntu:~$

    What do I need to do next?

  6. #6
    Join Date
    Aug 2006
    Beans
    166
    Distro
    Kubuntu 11.10 Oneiric Ocelot

    Re: Ubuntu v9.04 won't save Anything on USB Flash Drive

    Hmmmm... kinda funny. What started your boot, seems to me you are running from a ramdisk (your / is mounted as rootfs). Seems things weren't really installed on your disk.

    But I'm not quiet sure.

    I would guess your flashdrive is identified as /dev/sda.

    what happens if you execute the following:
    Code:
    mkdir /tmp/sda1
    sudo mount /dev/sda1 /tmp/sda1
    ls /tmp/sda1
    Do you see a root filesystem (with bin, etc, usr, etc...)?
    The most exciting phrase to hear in science, the one that heralds new discoveries, is not "Eureka!" but "That's funny..."' - Isaac Asimov

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •