change or reset WSL password

To change or reset your password, open the Linux distribution and enter the command: passwd. You will be asked to enter your current password, then asked to enter your new password, and then to confirm your new password.

If you forgot the password for your Linux distribution:

  1. Open PowerShell and enter the root of your default WSL distribution using the command: wsl -u root

    If you need to update the forgotten password on a distribution that is not your default, use the command: wsl -d Debian -u root, replacing Debian with the name of your targeted distribution.

  2. Once your WSL distribution has been opened at the root level inside PowerShell, you can use this command to update your password: passwd <username> where <username> is the username of the account in the distribution whose password you've forgotten.

  3. You will be prompted to enter a new UNIX password and then confirm that password. Once you're told that the password has updated successfully, close WSL inside of PowerShell using the command: exit.

References

Best practices for setting up a WSL 2 development environment | Microsoft Docs

最新文章

  1. Hibernate 命名查询
  2. codevs 1080 线段树点修改
  3. CentOS 6安装PostgreSQL
  4. DTP激活时报Overlapping
  5. MFC中无边框窗口的拖动
  6. 分享50款 Android 移动应用程序图标【下篇】
  7. 怎样运用好ZBrush中的布尔运算
  8. sqlserver中将某数据库下的所有表字段名称为小写的改为大写
  9. BMP图片格式
  10. Struts2笔记——第一个实例HelloWorld
  11. Android(java)学习笔记211:采用httpclient提交数据(qq登录案例)
  12. PHP面向对象(OOP)编程完全教程:10.__set(),__get(),__isset(),__unset()四个方法的应用
  13. 浅谈JavaScript中的字符串操作
  14. 如何在原生微信小程序中实现数据双向绑定
  15. Odoo : 门店订货及在线签名免费开源方案
  16. zepto和jQuery on事件委托在苹果手机上的”坑“
  17. Unity 3D 如何修改新建脚本中的 C# 默认创建的 Script 脚本格式
  18. 系统用户在Samba服务器中起一个别名
  19. k8s相关文档
  20. javascript中的console.log有什么作用?

热门文章

  1. 基于SigalR实现的奥运会实时金牌榜
  2. Jetpack Compose之隐藏Scaffold的BottomNavigation
  3. MongoDB(4)- Collection 集合相关
  4. openswan协商流程之(四):main_inI2_outR2()
  5. redis存取数据sortedSet
  6. (5)java Spring Cloud+Spring boot+mybatis企业快速开发架构之SpringCloud-Spring Boot简介
  7. 【第十一篇】- Git Gitee之Spring Cloud直播商城 b2b2c电子商务技术总结
  8. ms sql 带自增列 带外键约束 数据导入导出
  9. js根据日期获取所在周
  10. 图论---最小生成树----普利姆(Prim)算法