How to hide a specific unmounted volume Announcing the arrival of Valued Associate #679: Cesar...
What came first? Venom as the movie or as the song?
Are Flameskulls resistant to magical piercing damage?
Reflections in a Square
Does traveling In The United States require a passport or can I use my green card if not a US citizen?
Can I ask an author to send me his ebook?
“Since the train was delayed for more than an hour, passengers were given a full refund.” – Why is there no article before “passengers”?
Has a Nobel Peace laureate ever been accused of war crimes?
lm and glm function in R
Why do people think Winterfell crypts is the safest place for women, children & old people?
Converting a text document with special format to Pandas DataFrame
A journey... into the MIND
Can I take recommendation from someone I met at a conference?
What helicopter has the most rotor blades?
Does the Pact of the Blade warlock feature allow me to customize the properties of the pact weapon I create?
Short story about an alien named Ushtu(?) coming from a future Earth, when ours was destroyed by a nuclear explosion
A German immigrant ancestor has a "Registration Affidavit of Alien Enemy" on file. What does that mean exactly?
Do chord progressions usually move by fifths?
Can the van der Waals coefficients be negative in the van der Waals equation for real gases?
What is the ongoing value of the Kanban board to the developers as opposed to management
Can a Wizard take the Magic Initiate feat and select spells from the Wizard list?
Why these surprising proportionalities of integrals involving odd zeta values?
Like totally amazing interchangeable sister outfit accessory swapping or whatever
How do I deal with an erroneously large refund?
Why is one lightbulb in a string illuminated?
How to hide a specific unmounted volume
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern)
2019 Community Moderator Election Results
Why I closed the “Why is Kali so hard” questionget fn+volume control working in xfceInstalling and uninstalling gnome on debianChange volume with terminalXFCE on Debian: hiding block devicesChanging system volume also changes Spotify volume (Arch Linux)Master volume keeps changing, how can I find out what causes this?How to hide Kopete on KDE taskbar?Volume control and network notification icons are invisible and mutually exclusive after upgrading to Mint 19How can I make debian-gnome slimmer?Disk space on a logical volume
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
I am using Debian 9 with xfce and I would like to hide an unmounted volume in the Desktop.
I tried to install udisk; however, I ran into a lot of problems.
Does anyone know an easy way to hide an unmounted volume?
debian volume
add a comment |
I am using Debian 9 with xfce and I would like to hide an unmounted volume in the Desktop.
I tried to install udisk; however, I ran into a lot of problems.
Does anyone know an easy way to hide an unmounted volume?
debian volume
Could you edit your post to include what steps you have taken so far what errors you have encountered? Thank you!
– kemotep
12 hours ago
add a comment |
I am using Debian 9 with xfce and I would like to hide an unmounted volume in the Desktop.
I tried to install udisk; however, I ran into a lot of problems.
Does anyone know an easy way to hide an unmounted volume?
debian volume
I am using Debian 9 with xfce and I would like to hide an unmounted volume in the Desktop.
I tried to install udisk; however, I ran into a lot of problems.
Does anyone know an easy way to hide an unmounted volume?
debian volume
debian volume
edited 4 hours ago
Jeff Schaller♦
45.2k1164147
45.2k1164147
asked 13 hours ago
Victor DoorsVictor Doors
7210
7210
Could you edit your post to include what steps you have taken so far what errors you have encountered? Thank you!
– kemotep
12 hours ago
add a comment |
Could you edit your post to include what steps you have taken so far what errors you have encountered? Thank you!
– kemotep
12 hours ago
Could you edit your post to include what steps you have taken so far what errors you have encountered? Thank you!
– kemotep
12 hours ago
Could you edit your post to include what steps you have taken so far what errors you have encountered? Thank you!
– kemotep
12 hours ago
add a comment |
1 Answer
1
active
oldest
votes
This worked for me:
# cat /etc/udev/rules.d/99-hide-partitions.rules
KERNEL=="sda*", ENV{UDISKS_IGNORE}="1"
You should run udevadm control --reload (as root) after modifying any udev rules, and log out and in to your desktop environment.
Unfortunately still not working for me
– Victor Doors
10 hours ago
that's curious. I've copy-pasted it from a (vanilla) debian 9 machine with xfce, no less.
– pizdelect
9 hours ago
It worked after restarting the computer
– Victor Doors
9 hours ago
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "106"
};
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: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
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%2funix.stackexchange.com%2fquestions%2f513807%2fhow-to-hide-a-specific-unmounted-volume%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
This worked for me:
# cat /etc/udev/rules.d/99-hide-partitions.rules
KERNEL=="sda*", ENV{UDISKS_IGNORE}="1"
You should run udevadm control --reload (as root) after modifying any udev rules, and log out and in to your desktop environment.
Unfortunately still not working for me
– Victor Doors
10 hours ago
that's curious. I've copy-pasted it from a (vanilla) debian 9 machine with xfce, no less.
– pizdelect
9 hours ago
It worked after restarting the computer
– Victor Doors
9 hours ago
add a comment |
This worked for me:
# cat /etc/udev/rules.d/99-hide-partitions.rules
KERNEL=="sda*", ENV{UDISKS_IGNORE}="1"
You should run udevadm control --reload (as root) after modifying any udev rules, and log out and in to your desktop environment.
Unfortunately still not working for me
– Victor Doors
10 hours ago
that's curious. I've copy-pasted it from a (vanilla) debian 9 machine with xfce, no less.
– pizdelect
9 hours ago
It worked after restarting the computer
– Victor Doors
9 hours ago
add a comment |
This worked for me:
# cat /etc/udev/rules.d/99-hide-partitions.rules
KERNEL=="sda*", ENV{UDISKS_IGNORE}="1"
You should run udevadm control --reload (as root) after modifying any udev rules, and log out and in to your desktop environment.
This worked for me:
# cat /etc/udev/rules.d/99-hide-partitions.rules
KERNEL=="sda*", ENV{UDISKS_IGNORE}="1"
You should run udevadm control --reload (as root) after modifying any udev rules, and log out and in to your desktop environment.
edited 11 hours ago
answered 11 hours ago
pizdelectpizdelect
795210
795210
Unfortunately still not working for me
– Victor Doors
10 hours ago
that's curious. I've copy-pasted it from a (vanilla) debian 9 machine with xfce, no less.
– pizdelect
9 hours ago
It worked after restarting the computer
– Victor Doors
9 hours ago
add a comment |
Unfortunately still not working for me
– Victor Doors
10 hours ago
that's curious. I've copy-pasted it from a (vanilla) debian 9 machine with xfce, no less.
– pizdelect
9 hours ago
It worked after restarting the computer
– Victor Doors
9 hours ago
Unfortunately still not working for me
– Victor Doors
10 hours ago
Unfortunately still not working for me
– Victor Doors
10 hours ago
that's curious. I've copy-pasted it from a (vanilla) debian 9 machine with xfce, no less.
– pizdelect
9 hours ago
that's curious. I've copy-pasted it from a (vanilla) debian 9 machine with xfce, no less.
– pizdelect
9 hours ago
It worked after restarting the computer
– Victor Doors
9 hours ago
It worked after restarting the computer
– Victor Doors
9 hours ago
add a comment |
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- 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%2funix.stackexchange.com%2fquestions%2f513807%2fhow-to-hide-a-specific-unmounted-volume%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
Could you edit your post to include what steps you have taken so far what errors you have encountered? Thank you!
– kemotep
12 hours ago