Make Samsung Portable SSD T3 work on Ubuntu
When I try to connect the SSD drive on my laptop with Ubuntu Xenial (16.04.1), it refuses to mount it.
It doesn't recognize the exFAT file system.
The error was similar to:
Unable to access “Samsung_T3”
Error mounting /dev/sdb1 at /run/media/todd/Samsung_T3: Command-line `mount -t "exfat" -o "uhelper=udisks2,nodev,nosuid,uid=1000,gid=1000,iocharset=utf8,namecase=0,errors=remount-ro,umask=0077" "/dev/sdb1" "/run/media/todd/Samsung_T3"' exited with non-zero exit status 32:
mount: unknown filesystem type 'exfat'
mount hard-drive ssd exfat
add a comment |
When I try to connect the SSD drive on my laptop with Ubuntu Xenial (16.04.1), it refuses to mount it.
It doesn't recognize the exFAT file system.
The error was similar to:
Unable to access “Samsung_T3”
Error mounting /dev/sdb1 at /run/media/todd/Samsung_T3: Command-line `mount -t "exfat" -o "uhelper=udisks2,nodev,nosuid,uid=1000,gid=1000,iocharset=utf8,namecase=0,errors=remount-ro,umask=0077" "/dev/sdb1" "/run/media/todd/Samsung_T3"' exited with non-zero exit status 32:
mount: unknown filesystem type 'exfat'
mount hard-drive ssd exfat
add a comment |
When I try to connect the SSD drive on my laptop with Ubuntu Xenial (16.04.1), it refuses to mount it.
It doesn't recognize the exFAT file system.
The error was similar to:
Unable to access “Samsung_T3”
Error mounting /dev/sdb1 at /run/media/todd/Samsung_T3: Command-line `mount -t "exfat" -o "uhelper=udisks2,nodev,nosuid,uid=1000,gid=1000,iocharset=utf8,namecase=0,errors=remount-ro,umask=0077" "/dev/sdb1" "/run/media/todd/Samsung_T3"' exited with non-zero exit status 32:
mount: unknown filesystem type 'exfat'
mount hard-drive ssd exfat
When I try to connect the SSD drive on my laptop with Ubuntu Xenial (16.04.1), it refuses to mount it.
It doesn't recognize the exFAT file system.
The error was similar to:
Unable to access “Samsung_T3”
Error mounting /dev/sdb1 at /run/media/todd/Samsung_T3: Command-line `mount -t "exfat" -o "uhelper=udisks2,nodev,nosuid,uid=1000,gid=1000,iocharset=utf8,namecase=0,errors=remount-ro,umask=0077" "/dev/sdb1" "/run/media/todd/Samsung_T3"' exited with non-zero exit status 32:
mount: unknown filesystem type 'exfat'
mount hard-drive ssd exfat
mount hard-drive ssd exfat
edited Jun 22 '17 at 18:28
David Foerster
28.4k1366111
28.4k1366111
asked Aug 3 '16 at 10:06
Guillaume HustaGuillaume Husta
19119
19119
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
I managed to make it work and mount my drive after installing exfat-utils
.
The command I used:
sudo apt-get install exfat-utils
1
exfat-fuse
should be enough to mount ExFAT file systems.exfat-utils
contains tools to create and diagnose ExFAT file systems and recommends the installation ofexfat-fuse
, which is probably how you installed it because Apt installs recommended packages in Ubuntu's default configuration.
– David Foerster
Jun 22 '17 at 18:31
add a comment |
Reinstalling the following packages worked for me. Old distro.
sudo apt-get remove exfat-fuse
sudo apt-get install exfat-fuse
New contributor
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f806479%2fmake-samsung-portable-ssd-t3-work-on-ubuntu%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
I managed to make it work and mount my drive after installing exfat-utils
.
The command I used:
sudo apt-get install exfat-utils
1
exfat-fuse
should be enough to mount ExFAT file systems.exfat-utils
contains tools to create and diagnose ExFAT file systems and recommends the installation ofexfat-fuse
, which is probably how you installed it because Apt installs recommended packages in Ubuntu's default configuration.
– David Foerster
Jun 22 '17 at 18:31
add a comment |
I managed to make it work and mount my drive after installing exfat-utils
.
The command I used:
sudo apt-get install exfat-utils
1
exfat-fuse
should be enough to mount ExFAT file systems.exfat-utils
contains tools to create and diagnose ExFAT file systems and recommends the installation ofexfat-fuse
, which is probably how you installed it because Apt installs recommended packages in Ubuntu's default configuration.
– David Foerster
Jun 22 '17 at 18:31
add a comment |
I managed to make it work and mount my drive after installing exfat-utils
.
The command I used:
sudo apt-get install exfat-utils
I managed to make it work and mount my drive after installing exfat-utils
.
The command I used:
sudo apt-get install exfat-utils
edited Nov 1 '16 at 8:27
David Foerster
28.4k1366111
28.4k1366111
answered Aug 3 '16 at 10:08
Guillaume HustaGuillaume Husta
19119
19119
1
exfat-fuse
should be enough to mount ExFAT file systems.exfat-utils
contains tools to create and diagnose ExFAT file systems and recommends the installation ofexfat-fuse
, which is probably how you installed it because Apt installs recommended packages in Ubuntu's default configuration.
– David Foerster
Jun 22 '17 at 18:31
add a comment |
1
exfat-fuse
should be enough to mount ExFAT file systems.exfat-utils
contains tools to create and diagnose ExFAT file systems and recommends the installation ofexfat-fuse
, which is probably how you installed it because Apt installs recommended packages in Ubuntu's default configuration.
– David Foerster
Jun 22 '17 at 18:31
1
1
exfat-fuse
should be enough to mount ExFAT file systems. exfat-utils
contains tools to create and diagnose ExFAT file systems and recommends the installation of exfat-fuse
, which is probably how you installed it because Apt installs recommended packages in Ubuntu's default configuration.– David Foerster
Jun 22 '17 at 18:31
exfat-fuse
should be enough to mount ExFAT file systems. exfat-utils
contains tools to create and diagnose ExFAT file systems and recommends the installation of exfat-fuse
, which is probably how you installed it because Apt installs recommended packages in Ubuntu's default configuration.– David Foerster
Jun 22 '17 at 18:31
add a comment |
Reinstalling the following packages worked for me. Old distro.
sudo apt-get remove exfat-fuse
sudo apt-get install exfat-fuse
New contributor
add a comment |
Reinstalling the following packages worked for me. Old distro.
sudo apt-get remove exfat-fuse
sudo apt-get install exfat-fuse
New contributor
add a comment |
Reinstalling the following packages worked for me. Old distro.
sudo apt-get remove exfat-fuse
sudo apt-get install exfat-fuse
New contributor
Reinstalling the following packages worked for me. Old distro.
sudo apt-get remove exfat-fuse
sudo apt-get install exfat-fuse
New contributor
edited yesterday
MatsK
533214
533214
New contributor
answered yesterday
Will BudicWill Budic
1
1
New contributor
New contributor
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f806479%2fmake-samsung-portable-ssd-t3-work-on-ubuntu%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown