How to convert 'iso Archive' to 'iso'? What is 'iso Archive'? - virtual-machine

I would like to request your help regarding the conversion of 'iso Achive' into 'iso'.
When I download the Xubuntu iso file from xubuntu.org, the file extension on my system (Windows 10) shows 'iso Archive'.
I cannot create a virtual machine using this 'iso Archive'.
Please advise how could I convert it to 'iso'. Thank you.

At last, I have found that there was no problem with these files.
I have Docker installed on Windows 10, hence, the Hyper-V Windows feature was enabled. Once I disabled the Hyper-V feature and restarted the system, I could successfully use these files to create a virtual machine.

Related

Access File System of a WSL as a seperate Drive

I have installed Ubuntu 20.04 from Microsoft Store as a Windows Subsystem for Linux (WSL) and I need to access the system files of it from Windows Explorer and access it as a separate Partition (as C:,D:).
Anyone know how to do this? Thanks.
I think what you are searching for is Linux File System. On WSL, as you have installed Ubuntu, You Can find it in,
C:\Users\Username\AppData\Local\Packages\CanonicalGroupLimited.Ubuntu20.04onWindows\LocalState\rootfs

How to get mod_jk.so/mod_jk.dll file for windows?

I am configuring httpd in windows server for load balancing. One of the step in configuration is to download tomcat connector for windows and put mod_jk.so file into modules folder.
I downloaded latest connector of windows from https://tomcat.apache.org/download-connectors.cgi
But after extracting, I could not find this file. I found some steps to build it on some sites, but those steps are of linux environments.
How to get mod_jk.so for windows environment ?
If you want mod_jk for Windows/httpd, then you should get it from the same place you got your binary distribution of httpd.
You probably got it from ApacheLounge, which BTW is not directly-affiliated with the Apache Software Foundation, but has been providing Windows binaries for quite some time and seems to be reputable. YMMV.

WSO2sp on linux does not save the file properly

I've installed wso2sp 4.2.0 on Linux server, opened the editor, created my first siddhi file and saved it. I named it as "CargoWeightApp" and expected to find it in the default /wso2/editor/deployment/workspace directory. But the file was saved in /wso2/editor/deployment directory with name "workspace\CargoWeightApp.siddhi".
Any idea why it happened so?
I got the same issue.
I installed wso2sp 4.2.0 on a remote linux server and I accessed the editor using my Windows desktop.
It is somehow getting the backslash "\" from Windows and trying to save it in Linux.
I don't have the same issue using a Linux desktop. Please try.
I hope it solved your issue.
Best,
The issue is tracked through #732
This issue has been resolved with PR:#1380

Ubuntu 18.04 - bad d-i Packages file from local mirror

I am trying to PXE install Ubuntu 18.04 from a local mirror. When I get to the select mirror part of the install, it says failed to download a file (see link for pictures) and also bad d-i Packages file. The PXE client is a Virtualbox VM.
https://imgur.com/a/1Bsvq8c
I have done the following:
Copied the Ubuntu ISO files to the Apache server
All files have rx permissions (can download from a browser)
Anything else I should try?
Thanks
This happens because it requires file that doesn't exist.
Check Apache server access log to see which request returns 404.
In addition, try to install with this image file.(not the live version)
http://cdimage.ubuntu.com/releases/18.04/release/ubuntu-18.04-server-amd64.iso

WAMP and SQLSRV: sqlsrv not included in `PDO::getAvailableDrivers()` after install

I've never been able to get SQL Server to play nicely in my WAMP environment, and I trying to finally solve it once and for all.
Tried:
Downloaded the latest SQL Server drivers from microsoft, then extracted and dropped them in my \wamp\bin\php\php5.4.3\ext dir.
I edited both the \wamp\bin\php\php5.4.3\php.ini and \wamp\bin\apache\apache2.4.2\bin\php.ini files to include extension=php_sqlsrv_54_ts.dll.
restarted all WAMP services
checked phpinfo ... no SQLSRV
checked PDO::getAvailableDrivers() ... got only Array( [0]=>mysql, [1]=>sqlite )
Now, I understand that PDO is included natively in PHP 5.3+, but since the MS instructions explicitly requires that extension=php_pdo.dll be enabled, so I figured I'd give that a shot too.
I downloaded the DLL from dlldll.com (1st encounter with that site, so I hoping it's a reputable source), extracted and moved the _php_pdo.dll_ file to my \wamp\bin\php\php5.4.3\ext dir, then added it into both the php.ini files ... no improvement.
As a side note, when I check the list of activated PHP ext's from the WAMPSERVER menu, the sqlserver extensions don't even show up on the list.
Just to test it out, I also tried uncommenting extension=php_pdo_pgsql.dll in the php.ini's, and that worked just fine ... "pgsql" was included in the avail drivers array.
My setup:
Wampserver 2.2 (64bit), running
Apache 2.4.2
PHP 5.4.3
Win 7 pro 64
What next?
I'm just about out of ideas.
The only thing I can think of is that maybe the SQLSRV drivers are 32bit, and not playing nicely with my 64bit setup ... ooohhh goodness .. I sure hope not.
Any tips/pointers are welcome ... especially if they don't include completely reinstalling ;)
I was able to get the sqlsvr PHP PDO driver working on my slightly older version of WAMP 32-bit. Here is my setup:
WAMP 2.2 (32 bit)
Apache 2.2.21
PHP 5.3.8
Win 7 Pro 64 bit
Here is what I did:
Downloaded the MS 3.0 drivers from here: http://www.microsoft.com/en-us/download/details.aspx?id=20098
Unpacked all of the files into the PHP ext folder (C:\wamp\bin\php\php5.3.8\ext)
Added this line to my apache php.ini file (C:\wamp\bin\apache\Apache2.2.21\bin\php.ini)
extension=php_pdo_sqlsrv_53_ts.dll
Downloaded and installed MS SQL Server 2012 Native Client ODBC driver from here: http://go.microsoft.com/fwlink/?LinkID=239648&clcid=0x409
After these steps my PHP code happily connected to my SQL Server database.