Adding Windows Print Server into CUPS installed on Ubuntu - cups

We have a CUPS Print server installed locally on the network inside a Virtual machine with Ubuntu Operating system.
Installed Microsoft Print server in Windows server 2016 which is the Host operating system on which ubuntu and cups are installed. The communication we are looking to make is to cups so it can print to windows print server (CUPS Server --> Windows Printer Server 2016). How can we make sure this communication is achieved. Any suggestion will be really appreciated.

Related

Connect MySQL on my host computer to my CentOS7 virtual Machine

I have CentOS Linux 7 on my virtual machine using VirtualBox. I have no GUI, it's just the Terminal. I have Microsoft SQL Server Management Studio on my host PC (Windows 10). I'm trying to connect it to my VM and I can't figure it out. I've looked at several different sources and I can't get it to connect. Can anyone offer any assistance?

Change a Windows Server 2016 Machine From GUI to Core

We have a Windows machine that when remoted into, the only thing that comes up is a command prompt. I'm under the impression that this machine is set to being Windows Core. I'm looking to do this to another one of our machines (Windows Server 2016) but the machine is already setup and running with the desktop GUI. Is it possible to change / retroactively put the machine back to Windows Core?
install(GUI), unistall (core) Roles and Features -> User Interfaces and Infrastructure

Easy PHP Development Server 16.1 PHP MyAdmin

I recently downloaded Easy PHP 16.1 and tried to open my phpmyadmin and it shows blank page.
My Environment is Windows 8 32 bit system, freshly installed os.
I have also installed Eclipse for android development in the same system and not sure will there be any port conflicts.
The apache server is running fine and i could execute the php files with echo statement.
Note : I tried with xampp also, and i got a blank screen for xampp too.

RDP Printer not Showing ( Lubuntu to Windows Server 2008 r2)

I'm new to ubuntu...
I'm currently running Lubuntu latest version on my PC and RDP to windows server 2008 r2 works pretty well. But I can't detect any local printer on the network. I'm using Remmina 1.1.0 .
I have tried enable local sound which in some forums are the problem. But still doesn't work for me.
If I run RDP windows 7 to windows server 2008 R2, all printers on network are detected well.
Is there any packages to be installed to fix this problem? Please help... Thankyou

CUDA Debugging - VS on windows workstation, GPUs on Linux server?

Has anyone had any experience debugging CUDA code on a server while coding on a workstation?
My laptop (Thinkpad T400) doesn't support CUDA, but I have access to a server with pair of NVIDIA GTX 295 cards that runs Linux.
Can I use NVidia's Visual Studio tools to debug remotely on the server?
Failing that, I also have an Ubuntu VM running on my laptop. Is there a debugger that I can use under Linux to debug on the server?
I really don't want to have to buy another laptop with dual NVidia cards.
Developing in c on a remote linux machine (like your server) is quite common. You can ssh onto the server from any client (like your laptop) to compile and run the code just as you would if you were sitting at the machine, and you can use gdb to debug your code in a terminal. You can also use ddd as a graphical front end to gdb or a linux IDE such as eclipse by forwarding X11 over ssh.
You can use cuda-gdb to debug your CUDA code in a terminal in exactly the same way. Unfortunately, there is not a visual cuda debugger for linux yet. However, it appears you can use ddd with cuda-gdb [source], as you have two gpus. I'm not sure about using cuda-gdb in eclipse.
Yes you can but you need to buy the Parallel Nsight Studio from Nvidia
After installing on the remote machine the NsightDebugServer you can upload and debug programs from
your cuda-less laptop.
Update
Turns out This solution requires a WINDOWS server in order to run the NsightDebugServer.
To connect to the linux machine from your laptop, use a remote connection.
install putty and a Xserver for windows and just login with
ssh -X username#cudaserver.
The environment would not be fancy as Visual Studio but you can do the basic steps of debugging.
Eclipse "might" have some support for remote gdb servers. Never experimented that (Emacs + gdb is sufficient for me)