Yes and no. I had a heart issue a couple of years ago and stopped taking my meds during that process because they can interfere with heart function in theory. That said, I think I am living up on part of your anxiety. Are you afraid that if you get used to them, get used to functioning with them on board, and then they get taken away you will be unable to function but be expected to based on recent performance?
I have had some of that anxiety and it is reasonable. People do tend to see your “new normal” and “normal” after a fairly short time. Their expectations change and their tolerance for you struggling goes down in some ways because they start relying in your performance at that higher level.
It is really unfair but that is something that happens. I have however found some ways around this anxiety. I have built better systems while using my meds that work better for off my meds too. I have automated some things, make others easier to do, and honestly stopped doing a bunch of things I used to do at all. By doing this I have reduced the demand on me on the other days.
If you can use your meds to make life easier for when you are off the meds I think you will feel the anxiety lessen.
Also, depending on where you are and local laws, stockpiling a very small amount, maybe one month ahead or something, can be very helpful. I try to buy my next dose as soon as I can and have ended up with about one month of buffer. Now if my meds are unavailable at the pharmacy I can just not stress and use my backup. Because I rotate through they never get stale and I am never holding more than two months of meds, so I am not in a weird situation of having years of meds to explain away. Be careful of your local laws and so on, it is legal here but may not be there, so don’t get yourself in trouble.
Also, consider non medication supports. For me that is heavy work like weight lifting as well as eating far less sugar. Consider having a reasonable source of caffeine available and keeping your usage down so you don’t built a tolerance to it. If you are out of meds caffeine can help for some people such as myself, nowhere near as good as meds but much better than nothing.








Other people have obviously pointed it out, but this is one of the many areas in Linux where the command line is so much easier than an interface that the people who write GUI tools just don’t bother. The tool you need for a command line approach is called dd (I imagine it stands for direct data because that is what it does). Using dd you can take data from one place and put it into another. This means you can put zeros all over a drive, wiping it in full, using
dd if=/dev/zero of=/dev/targetdeviceThat will fill the whole drive with zeroes, but you could also do it with random noise first, using the below
dd if=/dev/random of=/dev/targetdeviceIn the case of your ISO image there is someone who has included all the options including block size and so on, but the step you really need is to be sure you get the right device. Execuse the command below
ls /devThen insert your device, wait a few seconds, and run it again. You will have a list of all of the devices that were connected before and after plugging your drive in, so your drive will be the new one. It will probably show up as something like
Notice that there are two. The first is the device, the second is the partition on the device. If you tried to put the content of an ISO image into an existing partition it would look like it had all worked but it would actually fail because the ISO is a full rip of a device, not a partition. Instead use the device itself, in this case sdc.
dd if=/path/to/image.iso of=/dev/sdc bs=4M; syncThe last bit will make your system write things to the disk and make it safe to eject it. Once that is all done it should work as a bootable USB.
It seems super complex but once you have done it a few times it becomes so easy you will regret the time spent getting a GUI installed.
If you still want a GUI you could try Gnome Disks, but I never enjoyed using it.