Skip to content

Commit

Permalink
fix: Don't allow the use of reflinks (#662)
Browse files Browse the repository at this point in the history
If you are using `pixi` `v0.11.1` you got a feature activated called
`reflinking`. This however doesn't work correctly yet.

The issue you might get is:
```
Permission denied (os error 13)
```
This (as far as we know) only happens on `btrfs` filesystems, like my
Fedora setup.

You can check if your on `btrfs` using the following command:
```
> lsblk -f
...
nvme0n1                                                                                            
├─nvme0n1p1 vfat   FAT32                       4C  581,4M     3% /boot/efi
├─nvme0n1p2 ext4   1.0                         3a  611,7M    30% /boot
└─nvme0n1p3 btrfs        fedora_localhost-live 87   69,6G    91% /home
```
  • Loading branch information
ruben-arts authored Jan 12, 2024
1 parent 9fbce52 commit af3c54d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/install.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ pub async fn execute_transaction(
let install_options = InstallOptions {
python_info: transaction.python_info.clone(),
platform: Some(transaction.platform),
allow_ref_links: Some(false),
..Default::default()
};

Expand Down

0 comments on commit af3c54d

Please sign in to comment.