Skip to main content

Linux not allowing to READ/WRITE files on another partition

Unable to delete/write files to another partitions

Recently I installed Linux on my old laptop which was running Windows 10. Every thing went well as expected. But after a while I realized that I was unable to write or delete files from second partition.
So, today I will be telling you how to fix such issues. (This fix also works on if you are getting error while mounting your partition "The disk contains an unclean file system")

Open up your terminal and execute the following command

sudo ntfsfix /dev/sdXY
where XY is the partition

(For Eg:- sda2 or sdb2)

You can list your following partitions by executing following commmand

lsblk

Then mount the partition with the following command

sudo mount -o rw /dev/sdXY

Comments

Popular posts from this blog

How to install mpv player on Windows with lua scripts and custom configs

If you are reading this blog then I dont need to explain why mpv is best media player across platforms. And today I will guide you how to install this awesome player on windows. 1. Download the latest stable build from this link https://sourceforge.net/projects/mpv-player-windows/files/64bit/ 2. Extract it 3. Go to installer folder 4. Right click on mpv-install.bat and click run as admininstrator. Installation will take some time. After installation is done don't delete that folder coz the folder itself itself is installation directory. 5. For lua scripts create a folder in installation directory named scripts and paste your script in that folder. 6. And copy mpv.conf file in this directory C:\Users\user\AppData\Roaming\mpv 7. That's it 

How to install missing firmware on Linux

How to install missing firmware on Linux Sometimes you will get an error while upgrading your linux system update-initramfs: Generating /boot/initrd.img-5.3.0-1parrot1-amd64 W: Possible missing firmware /lib/firmware/i915/icl_dmc_ver1_07.bin for module i915 There are many solutions to fix this problem. The simplest one is to reinstall your linux-firmware (This may not work on every system) $ sudo apt-get --reinstall linux-firmware Sometimes your error will still not get resolved. Then we have to find the modules manually by googling it. Download the module and move it into the firmware directory $ sudo cp ~/Downloads/*.bin /lib/firmware/i915/ $ sudo update-initramfs -u Thats it !

Ubuntu PPA's in Debian

How to use Ubuntu PPA's in Debian Ubuntu is the most popular Linux distribution in the world. As a result, it enjoy's more third party support than most other distributions, including Ubuntu's parent, Debian. Ubuntu packages don't always work on Debian. Actually, more often than not, there's some kind of problem running or installing them. Plus, Debian isn't really set up to interact with Ubuntu PPAs. Install the Dependencies Before you start, there are a couple of general build dependencies that you'll need. Of course, you need the general build tools, plus some Debian packaging scripts. # apt install build-essential devscripts That's really all! You might need some specific dependencies for the package that you want, but that'll be later. Add the Source PPA Next, you'll need to find a PPA that you want to use. Most Ubuntu PPAs have a section where you can view the actual  deb  and  deb-src  records. On Launchpad, it's under a m...