Tagged Questions
-2
votes
0answers
12 views
Add efi boot partition to windows 8 [on hold]
So, I installed windows 8 after completely wiping my machine, and I did it with legacy mode enabled. My windows installed without an EFI partition or any EFI files that I could find (it boots fine). ...
-1
votes
1answer
41 views
Deploying a Python Script to Windows and Linux [on hold]
I have a python server that I need to run in both a Linux and Windows environment, and my question is about deployment. What is the best method for deploying the solution instead of just double ...
0
votes
1answer
20 views
MySql error on Windows but not on Linux, specified key was too long
I have an app that uses MySql, and the app provides a web UI to configure the DB.
I installed MySql 5.1.70 on a Windows Sever 2008 r2 box. I also installed MySql 5.1.70 on a Linux (RHEL 6.4) box.
...
-1
votes
1answer
16 views
How do I profile applications on Windows and Linux to get CPU and RAM usuage values? [on hold]
I am busy doing some research and I need to do a comparison between two methods of system monitoring. I have to compare the total memory of overhead and computation required when queries are made to ...
1
vote
1answer
49 views
differences between windows java 1.7 and linux 1.7 [on hold]
I have found a rising number of differences between the current release of 1.7 on windows and 1.7 on linux. For example Files.ReadAllBytes(Path path) does not exist in Linux (generates compiler error ...
0
votes
1answer
27 views
How to activate programs on windows from Linux machine
First I will explain my target
Target - execute programs or scripts on my windows machine from my Linux machine
I find the winexe tool – this tool perform remotely executes commands on remote ...
-1
votes
1answer
31 views
File_get_contents function does not work with windows? [on hold]
file_get_contents("https://api.groupon.com/v2/deals.xml?division_id=cleveland&client_id=39ddf70c45844d5a9d5a92e5106f1b229b2e1df8");
This code does not work on windows, but does with Linux. ...
0
votes
3answers
66 views
Moving from Qt 4.x (Ubuntu Linux) to Qt 5.1 (Windows 7)
I made a program by using Qt Creator in Qt 4.x on an Ubuntu Linux platform in the last year. Now I don't use linux, instead I use Windows 7. I once again need my program which I made last year. I ...
1
vote
3answers
64 views
Serial communication between linux and windows
I am sending data bytes from linux to windows in serial RS232 then everything is ok, only i have to handle 0xa send from linux, because windows read it as 0xd + 0xa.
but when i am sending data bytes ...
0
votes
0answers
33 views
cross-compiling c++11 threads with mingw on linux
I try to crosscompile some c++11 source with mingw on linux for windows. The code uses std::thread.
When i compile i always get some errors:
$ ../mingw/cross/bin/i686-w64-mingw32-g++ -std=c++11 -I ...
-1
votes
2answers
19 views
Switching from Dual Boot to Virtual Box
I am dual booting on my Lenovo t420 windows and Ubuntu. I am using both Os and find it annoying to switch back and forth...I was wondering if I could have Ubuntu on my Virtual Box and copy my ...
-2
votes
0answers
27 views
windows 7 not recognizing USB drive [on hold]
I have a USB drive which I'm using with Linux (Ubuntu) and everything works fine with it.
When I insert the drive in Windows 7 I receive the message that Windows want's to format the drive to use ...
0
votes
1answer
25 views
Building a shared library using gcc on Linux and MinGW on Windows
I'm having trouble with generating a build setup that allows shared libraries to be built in both Linux and Windows using gcc and MinGW, respectively. In Linux, a shared library doesn't have to ...
0
votes
0answers
25 views
OpenMP - sections directive; Linux slower than Windows
I have a simple code prepared for testing. This is the most important piece of the code:
#pragma omp parallel sections
{
#pragma omp section
{
for (int j=0;j<100000;j++)
for (int ...
2
votes
2answers
16 views
Java - API support for traceroute?
Is there anyway I can get the output of traceroute in java. I know I could use exec but I want to know if there is any API can fetch the output for me not worrying about platform.