>want to install Linux on my computer
>use it for school and they require the use of Safe Exam Browser, which doesn't properly function on linxux
Bros, can't I just fake I'm using it or something? My school is dumb as hell
Want to install Linux on my computer
Other urls found in this thread:
Reskin Firefox to look like the browser they want you to use?
Full screen virtualbox?
>virtualbox
Stop promoting abandonware, on linux you shouldn't be using anything but qemu/kvm/libvirt.
run it in wine
or this, qemu
The answer is breaking off a windows vm, see
The real answer is never attending an institution that forces its students to use such nonsense in the first place.
the "safe exam browser" is most likely a fork of chrome with gay botnet extensions.
Not OP but I have a similar problem. I didn't know about it before already spending thousands of dollars so I'm kinda fucked.
sourceforge.net
It checks for virtualization and refuses to run if it sees that it is in a virtual machine.
I guess it would be an arms race of you trying to hide it and then trying to detect it
VMware is still faster with better graphics support
tell your school you can't run it because it doesn't support linux so they'll need to supply you with a laptop
>Have to install a program to use uni wifi
>no linux program
How do i escape the botnet
Inform them that their stupid software won't run on your computer.
If they're requiring you to use specific hardware and/or operating systems, they're also required to provide you with a machine with the requisite software for your coursework.
>safe exam browser
>has 2 computers
It's literal malware.
They check your running processes, what applications are running on your computer, what websites your browser is currently open to, your keystrokes, your webcam, your microphone.
If it detects the virtualization, it alerts the proctor.
This.
Claim your laptop is broken and ask for a paper copy
Does it offer passthrough and near bare cpu speeds? I think not.
what does this program do exactly?
deep packet inspection
>what is a dual boot
mine just uses standard eduroam. and if you don't want to use the setup tool they have instructions for manual setup.
what the fuck
What planet are you on? That's like saying McDonalds has to give you a PC so you can use their WiFi.
sounds just like win10
```
///
/// Detect if running in various virtual machines.
/// C# code only solution which is more compatible.
///
private static bool IsInsideVM()
{
using (var searcher = new ManagementObjectSearcher("Select * from Win32_ComputerSystem"))
{
using (var items = searcher.Get())
{
foreach (var item in items)
{
Logger.AddInformation("Win32_ComputerSystem Manufacturer: " + item["Manufacturer"].ToString() + ", Model: " + item["Model"].ToString(), null, null);
string manufacturer = item["Manufacturer"].ToString().ToLower();
string model = item["Model"].ToString().ToLower();
if ((manufacturer == "microsoft corporation" && !model.Contains("surface"))
|| manufacturer.Contains("vmware")
|| manufacturer.Contains("parallels software")
|| manufacturer.Contains("xen")
|| model.Contains("xen")
|| model.Contains("virtualbox"))
{
return true;
}
}
}
}
return false;
}
```
Here's what they use to check for a VM, so use qemu and an extension which hides those strings from the VM, or just hook the C# JIT. Easy.
I doubt it wouldn't work under wine