This guide explains how to create, mount, and maintain a VHDX drive for use with WSL (Windows Subsystem for Linux).
- Windows 10/11 with WSL2 installed
- Administrative access
- PowerShell
- Sufficient disk space
| // includes bindings for fetching/fetched | |
| PaginatedCollection = Backbone.Collection.extend({ | |
| fetch: function(options) { | |
| options || (options = {}); | |
| var self = this, | |
| success = options.success; | |
| options.success = function(resp) { | |
| self.trigger("fetched"); | |
| if(success) { success(self, resp); } |