Results 1 to 9 of 9

Thread: deleting files on ext hdd in Linux?

  1. #1
    Senior Member
    Join Date
    Aug 2008
    Posts
    337
    Thanks
    3
    Thanked
    2 times in 2 posts

    deleting files on ext hdd in Linux?

    Using my Acer Aspire One, with an ntfs portable hdd I can see and use the files on it, but I can't rename or delete them.

    If I right click them these options are greyed out, also, the permissions tab is greyed out too.

    How can I fix this?! (I have a stack of photos on the drive I wanted to review on a car journey, to decide which were worth processing etc)

  2. #2
    Splash
    Guest

    Re: deleting files on ext hdd in Linux?

    Sounds to me like you have the drive mounted as read only, you'll need to remount as read/write (if your distro supports full NTFS capability, which most modern ones do - not sure about the native distro of the One)

  3. #3
    Gentoo Ricer
    Join Date
    Jan 2005
    Location
    Galway
    Posts
    11,048
    Thanks
    1,016
    Thanked
    944 times in 704 posts
    • aidanjt's system
      • Motherboard:
      • Asus Strix Z370-G
      • CPU:
      • Intel i7-8700K
      • Memory:
      • 2x8GB Corsiar LPX 3000C15
      • Storage:
      • 500GB Samsung 960 EVO
      • Graphics card(s):
      • EVGA GTX 970 SC ACX 2.0
      • PSU:
      • EVGA G3 750W
      • Case:
      • Fractal Design Define C Mini
      • Operating System:
      • Windows 10 Pro
      • Monitor(s):
      • Asus MG279Q
      • Internet:
      • 240mbps Virgin Cable

    Re: deleting files on ext hdd in Linux?

    That'll only work if you can install ntfs-3g.
    Quote Originally Posted by Agent View Post
    ...every time Creative bring out a new card range their advertising makes it sound like they have discovered a way to insert a thousand Chuck Norris super dwarfs in your ears...

  4. #4
    Senior Member
    Join Date
    Aug 2008
    Posts
    337
    Thanks
    3
    Thanked
    2 times in 2 posts

    Re: deleting files on ext hdd in Linux?

    I have ttfs-3g installed all ok, that's how I got the drive working in the first place... I've just looked at the permissions:

    drwxrwxrwx 1 root root 4096 2008-09-04 17:51 PortableSeagate

  5. #5
    Comfortably Numb directhex's Avatar
    Join Date
    Jul 2003
    Location
    /dev/urandom
    Posts
    17,074
    Thanks
    228
    Thanked
    1,027 times in 678 posts
    • directhex's system
      • Motherboard:
      • Asus ROG Strix B550-I Gaming
      • CPU:
      • Ryzen 5900x
      • Memory:
      • 64GB G.Skill Trident Z RGB
      • Storage:
      • 2TB Seagate Firecuda 520
      • Graphics card(s):
      • EVGA GeForce RTX 3080 XC3 Ultra
      • PSU:
      • EVGA SuperNOVA 850W G3
      • Case:
      • NZXT H210i
      • Operating System:
      • Ubuntu 20.04, Windows 10
      • Monitor(s):
      • LG 34GN850
      • Internet:
      • FIOS

    Re: deleting files on ext hdd in Linux?

    in a terminal window, type (or paste)
    Code:
    mount | grep gate
    and put the output up here. that middle character is a pipe (shift-\ on most keyboards)

  6. #6
    Senior Member
    Join Date
    Aug 2008
    Posts
    337
    Thanks
    3
    Thanked
    2 times in 2 posts

    Re: deleting files on ext hdd in Linux?

    /dev/sdb1 on /media/portableseagate type fuseblk (ro,nosuid, nodev, allow_other, blkside=4096)

    Is the response to mount | grep gate

  7. #7
    Senior Member chrestomanci's Avatar
    Join Date
    Sep 2004
    Location
    Reading
    Posts
    1,614
    Thanks
    94
    Thanked
    96 times in 80 posts
    • chrestomanci's system
      • Motherboard:
      • Asus AMD AM4 Ryzen PRIME B350M
      • CPU:
      • AMD Ryzen 1600 @ stock clocks
      • Memory:
      • 16Gb DDR4 2666MHz
      • Storage:
      • 250Gb Samsung 960 Evo M.2 + 3Tb Western Digital Red
      • Graphics card(s):
      • Basic AMD GPU (OSS linux drivers)
      • PSU:
      • Novatech 500W
      • Case:
      • Silverstone Sugo SG02
      • Operating System:
      • Linux - Latest Xubuntu
      • Monitor(s):
      • BenQ 24" LCD (Thanks: DDY)
      • Internet:
      • Zen FTTC

    Re: deleting files on ext hdd in Linux?

    Quote Originally Posted by oldskooladdict View Post
    /dev/sdb1 on /media/portableseagate type fuseblk (ro,nosuid, nodev, allow_other, blkside=4096)
    The drive is mounted readonly

    You need to remount it read-write
    Code:
    mount /dev/sdb1 /media/portableseagate -o remount,rw

  8. #8
    Comfortably Numb directhex's Avatar
    Join Date
    Jul 2003
    Location
    /dev/urandom
    Posts
    17,074
    Thanks
    228
    Thanked
    1,027 times in 678 posts
    • directhex's system
      • Motherboard:
      • Asus ROG Strix B550-I Gaming
      • CPU:
      • Ryzen 5900x
      • Memory:
      • 64GB G.Skill Trident Z RGB
      • Storage:
      • 2TB Seagate Firecuda 520
      • Graphics card(s):
      • EVGA GeForce RTX 3080 XC3 Ultra
      • PSU:
      • EVGA SuperNOVA 850W G3
      • Case:
      • NZXT H210i
      • Operating System:
      • Ubuntu 20.04, Windows 10
      • Monitor(s):
      • LG 34GN850
      • Internet:
      • FIOS

    Re: deleting files on ext hdd in Linux?

    okay, Splash was spot on, then. see the section in brackets? that's the options the drive's been mounted with. "ro" means "read-only". whatever did your mounting did it read-only.

    without knowing which app you used to mount, i can't tell you the right way to fix it - but i can tell you how to fix it temporarily. you need to remount it - the command to do it is
    Code:
    mount -o remount,rw /media/portableseagate
    if your distro uses a root account, you use "su" to get the ability to make changes like that. if it uses sudo, then stick "sudo" at the start of the command above.

  9. #9
    Comfortably Numb directhex's Avatar
    Join Date
    Jul 2003
    Location
    /dev/urandom
    Posts
    17,074
    Thanks
    228
    Thanked
    1,027 times in 678 posts
    • directhex's system
      • Motherboard:
      • Asus ROG Strix B550-I Gaming
      • CPU:
      • Ryzen 5900x
      • Memory:
      • 64GB G.Skill Trident Z RGB
      • Storage:
      • 2TB Seagate Firecuda 520
      • Graphics card(s):
      • EVGA GeForce RTX 3080 XC3 Ultra
      • PSU:
      • EVGA SuperNOVA 850W G3
      • Case:
      • NZXT H210i
      • Operating System:
      • Ubuntu 20.04, Windows 10
      • Monitor(s):
      • LG 34GN850
      • Internet:
      • FIOS

    Re: deleting files on ext hdd in Linux?

    or, um, what chrestomanci said.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. WD media center HD vs regular ext HDD
    By Mike Fishcake in forum SCAN.care@HEXUS
    Replies: 1
    Last Post: 07-04-2006, 03:13 PM
  2. Whither Linux?
    By Nick in forum Question Time
    Replies: 49
    Last Post: 11-11-2005, 06:06 PM
  3. Add-on PlayStation 3 HDD will run Linux
    By Steve in forum HEXUS News
    Replies: 9
    Last Post: 12-06-2005, 06:23 PM
  4. We heard your feedback on Newegg....
    By DR in forum General Discussion
    Replies: 33
    Last Post: 05-03-2005, 08:13 PM
  5. Need Help to TATTOO a PB IMEDIA 5090 HDD
    By TJam in forum Help! Quick Relief From Tech Headaches
    Replies: 0
    Last Post: 27-02-2005, 09:39 PM

Posting Permissions

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