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

すべてが失敗しました。そのため、avrdude_6.3.orig.tar.gzlaunchpad.net から を取得し、インストール (解凍して実行./configure) を試みると、別の欠落パッケージが表示されます。その欠落パッケージをインストールしようとすると、別の欠落パッケージが表示されます ( libusb、、など)libftdi1libelf

AVRDUDEWSL にパッケージをインストールできるかどうか知りたいです。

編集:他のリンクから たくさん入手しまし404 not found linkssudo apt update

答え1

あなたは

sudo apt-get dist-upgrade

avrdudeもう一度試してください。私は Windows 10 Education を実行しており、リポジトリによって問題なく簡単にインストールできます。

これが私の出力です

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 ストアで確認して、正しく動作していることを確認してください。動作していない場合は、再インストールすると正常に動作するはずです。

関連情報