WSL 上的 avrdude apt 包

WSL 上的 avrdude apt 包

我尝试在 WSL 上安装 avrdude,但出现很多错误,缺少文件。这是我遇到的错误

 namz@Namila-Lap:/mnt/d/$ sudo apt-get install avrdude -f --fix-missing                                                                                          
Reading package lists... Done                                                                  
Building dependency tree                                                                       
Reading state information... Done                                                              
The following extra packages will be installed:                                                
  libftdi1                                                                                     
Suggested packages:                                                                            
  avrdude-doc                                                                                  
The following NEW packages will be installed:                                                  
  avrdude libftdi1                                                                             
0 upgraded, 2 newly installed, 0 to remove and 675 not upgraded.                               
Need to get 15.3 kB/279 kB of archives.                                                        
After this operation, 1,109 kB of additional disk space will be used.                          
Do you want to continue? [Y/n] y                                                               
WARNING: The following packages cannot be authenticated!                                       
  libftdi1                                                                                     
Install these packages without verification? [y/N] y                                           
Err http://london.mirrors.linode.com/ubuntu/ vivid/main libftdi1 amd64 0.20-2                  
  404  Not Found [IP: 2a01:7e00:1::b24f:af37 80]                                               
Unable to correct missing packages.                                                            
E: Failed to fetch http://london.mirrors.linode.com/ubuntu/pool/main/libf/libftdi/libftdi1_0.20
-2_amd64.deb  404  Not Found [IP: 2a01:7e00:1::b24f:af37 80]                                   

E: Aborting install.    

由于这里提到缺少一个名为的软件包libftdi1,我尝试使用 apt 安装它。但它也给出了一个错误 >

namz@Namila-Lap:/mnt/d/UoP/CE/Semester-5/Embeded/Lab1$ sudo apt-get install libftdi1 -f --fix-missing
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following NEW packages will be installed:
  libftdi1
0 upgraded, 1 newly installed, 0 to remove and 675 not upgraded.
Need to get 15.3 kB of archives.
After this operation, 70.7 kB of additional disk space will be used.
WARNING: The following packages cannot be authenticated!
  libftdi1
Install these packages without verification? [y/N] y
Err http://london.mirrors.linode.com/ubuntu/ vivid/main libftdi1 amd64 0.20-2
  404  Not Found [IP: 2a01:7e00:1::b24f:af37 80]
E: Failed to fetch http://london.mirrors.linode.com/ubuntu/pool/main/libf/libftdi/libftdi1_0.20-2_amd64.deb  404  Not Found [IP: 2a01:7e00:1::b24f:af37 80]

E: Internal Error, ordering was unable to handle the media swap

一切都失败了。所以我从 launchpad.net 获取avrdude_6.3.orig.tar.gz并尝试安装(提取并运行./configure),然后我又得到一个缺失的包。当尝试安装那个缺失的包时,又得到一个缺失的包,依此类推(libusb,,libftdi1等等libelf

我想知道我们可以AVRDUDE在 WSL 上安装包吗?

404 not found links编辑:我从sudo apt update其他链接 获得了很多

答案1

你能做一个

sudo apt-get dist-upgrade

然后重试。我正在运行 Windows 10 Education,我可以avrdude通过存储库轻松安装,没有任何问题。

这是我的输出

user@USER-ROG502VS:/mnt/c/Program Files/MongoDB/Server/3.6/bin$ sudo apt install avrdude     
[sudo] password for kasun:                                                                     
Reading package lists... Done                                                                  
Building dependency tree                                                                       
Reading state information... Done                                                              
The following package was automatically installed and is no longer required:                   
  libfreetype6                                                                                 
Use 'sudo apt autoremove' to remove it.                                                        
The following additional packages will be installed:                                           
  libftdi1                                                                                     
Suggested packages:                                                                            
  avrdude-doc                                                                                  
The following NEW packages will be installed:                                                  
  avrdude libftdi1                                                                             
0 upgraded, 2 newly installed, 0 to remove and 76 not upgraded.                                
Need to get 306 kB of archives.                                                                
After this operation, 1,105 kB of additional disk space will be used.                          
Do you want to continue? [Y/n] y                                                               
Get:1 http://archive.ubuntu.com/ubuntu xenial/universe amd64 libftdi1 amd64 0.20-4build1 [15.2 
kB]                                                                                            
Get:2 http://archive.ubuntu.com/ubuntu xenial/universe amd64 avrdude amd64 6.2-5 [291 kB]      
Fetched 306 kB in 20s (15.0 kB/s)                                                              
Selecting previously unselected package libftdi1:amd64.                                        
(Reading database ... 25822 files and directories currently installed.)                        
Preparing to unpack .../libftdi1_0.20-4build1_amd64.deb ...                                    
Unpacking libftdi1:amd64 (0.20-4build1) ...                                                    
Selecting previously unselected package avrdude.                                               
Preparing to unpack .../avrdude_6.2-5_amd64.deb ...                                            
Unpacking avrdude (6.2-5) ...                                                                  
Processing triggers for libc-bin (2.23-0ubuntu9) ...                                           
Processing triggers for man-db (2.7.5-1) ...                                                   
Setting up libftdi1:amd64 (0.20-4build1) ...                                                   
Setting up avrdude (6.2-5) ...                                                                 
Processing triggers for libc-bin (2.23-0ubuntu9) ... 

编辑:如果您已将 Windows 升级到最新版本,请检查您的bashWindows 商店,确保其正常运行,如果没有重新安装,那么它应该可以正常工作。

相关内容