Application knowledge First, you need knowledge about your application. At least one person has to know it very well. If nobody knows the application, you will need a lot of time to answer these questions:
Is it stateless or stateful? A stateful application means it changes depending on users actions. For example, an app storing files that are created by the user’s action in the files System will be stateful.
The impact of the answer is big, the migration of a stateless application is much easier than the migration of a stateful one. In the case of a stateless service, you have to do nothing.
In the other case (stateful application), you need to know which files are stateful and where they are stored on the filesystem. Therefore, someone who has a good knowledge about the application is mandatory.
Then, 2 choices are possible:……
默认情况下WSL安装的子系统在系统盘下,不过很多时候系统盘的空间是有限的,这时候就有了将WSL子系统安装到其他盘的需求。当然这里也会分两种情况,一种是新的安装,一种是已经安装好了。本篇就结合这两种情况,通过网上查到一些信息进行了验证。 新安装(New install) Downloading a WSL distro For illustration purposes, Ubuntu 22.04 will be used. Using Web Browser……