• Welcome to TechPowerUp Forums, Guest! Please check out our forum guidelines for info related to our community.
  • The forums have been upgraded with support for dark mode. By default it will follow the setting on your system/browser. You may override it by scrolling to the end of the page and clicking the gears icon.

external USB HDD issues

Joined
Oct 11, 2006
Messages
1,074 (0.16/day)
System Name My Current Desktop
Processor i9 12900KF
Motherboard Asus ROG STRIX Z690-E GAMING WIFI
Cooling ARCTIC Liquid Freezer II 360
Memory G.Skill Trident Z5 RGB Series 64GB (2 x 32GB) DDR5 6400 F5-6400J3239G32GX2-TZ5RW
Video Card(s) RTX 3090 FE
Storage SAMSUNG 980 PRO SSD 1TB
Display(s) Samsung G80SD
Case Fractal Design Torrent White
Audio Device(s) Schiit Bifrost2
Power Supply Corsair HX850
Mouse Razer Basilisk v3 pro
Keyboard Keychron Q6 Max (brown)
Software Win 11 Pro
im running Kubuntu 7.04 and my seagate 500GB external isn't working but works fine in XP. any ideas?

also any news on 32 bit x-fi drivers?
 
NTFS or FAT32?

There's a lot in the Ubuntu forums on the topic -- a search will get you a ton of hits. Basically, there's some tradeoff between "hotplug response" versus "solid mount with permissions". I set mine to mount "by UUID", and as long as it's plugged in when I boot, it's solid. Hotplug doesn't work that well when you do it this way, however.
 
its NTFS but it reads my XP partition fine which is also NTFS.
 
You need to install the ntfs-3g package from the repo, then mount the USB drive/partition as a ntfs-3g filesystem. Here's the relevant line from my /etc/fstab file:

Code:
UUID=A8FC3435FC33FC5E /media/NTFSTICK ntfs-3g user,atime,rw,nodev,nosuid 0 0

This happens to be a USB thumbdrive, but it's the same for a USB hard drive. :)
 
DIBL is 100% correct

ntfs-3g is the new driver recently developed, allows for writing to ntfs partitions without a sacrifice to a god ;)

sudo apt-get install ntfs-3g ntfsprogs
(the ntfsprogs has a tool which 'cleans' dirty unmounts of ntfs volumes)

After doing that you will be able to read/write mount your ntfs volumes.

The line that DIBL has quoted allows you as a non super user to automatically mount the drive without any permission issues.

To find the UUID i am stumped, its a unique number but i dont know where to find it, you could probably do a bit of googling.

The rest of the line just says the filesystem type (ntfs-3g), the options (user mountable, something, readwrite, something, something) and the other just says that it doesnt need to be fscked and checked (not needed cause its a portable drive, would slow the mounting process)
 
In a console window, enter
Code:
blkid

to see the conventional device/partition ID (/dev/hd_ or sd_) alongside the UUID for that partition, for all drives and partitions.

:)
 
Back
Top