0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

UbuntuをCドライブからDドライブに移す方法

Posted at

はじめに

Cドライブの容量を空けるためにUbuntuをDドライブに移す方法を記載します。

手順

  1. エクスプーローラーでUbuntuを移したいフォルダを作成しておく(ここではwslという名前にしておく)
  2. Windows PowerShellを管理者権限で開く
  3. 以下のコードで手順1で作成したフォルダに移動する
    cd D:\
    cd wsl
    
  4. Ubuntuを.tarファイルとしてエキスポート。Ubuntu-22.04の部分は使用しているディストリビューションの名前にする。
    wsl --export Ubuntu-22.04 ubuntu.tar
    
  5. UbuntuのWSLからの登録解除を行う。Ubuntu-22.04の部分は使用しているディストリビューションの名前にする。
    wsl --unregister Ubuntu-22.04
    
  6. 登録解除が行われたかの確認を行う。「サブシステムには、ディストリビューションがインストールされていません」と表示されていれば、登録解除成功。
    wsl -l -v
    
  7. 最初に作った.tarファイルから元のUbuntu環境を引越し先に復元する
    wsl --import Ubuntu-22.04 D:\wsl D:\wsl\ubuntu.tar
    
  8. 引越し完了

参考

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?