Advanced Search
Search Results
2 total results found
Mount host volumes in WSL2
Code Snippets
Add the following to /etc/wsl.conf [automount] options = "metadata"
Change file encoding with linux
Code Snippets
To get current encoding: file -i {filename} To convert it: iconv -f {sourceEncoding} -t {targetEncoding} {filename} Example: iconv -f ISO_8859-1 -t UTF-8 filename.txt