spice编译
㈠ 用什么工具编译 sp文件
.SP文件很有可能是SPICE电路模拟文件,要用SPICE去仿真。
你可以搜索PSPICE,是Cadence出的一个学生版SPICE仿真器。
㈡ 在国内从事C/C++编译器的开发有发展前景吗
我给你讲讲我的经历。 我大概十年工作经验,大概五年c++编译器前端经验(在两家500强做静态分析),四五年项目管理和品质过程改善经验。其他主流语言都会用,实现的大概方式也明白。 前一段时间找工作,投了二十几个c++职位一个电话都没有。唯一的面试是朋友内推的阿里的项目管理专家。跑去面试,悲催,直接换岗成p5-p6的测试来面试,问了几个测试问题直接让我回家了(顺便吐槽一下,他们对于测试过程感觉还没问到点上) 最后的结局就是,没人要,转行去制造加工业了。我总结一下为什么找不到工作(可能只是我偏颇的认识:一是这行需求太少,二是hr根本不知道你是干嘛的,三是做这行的根本不好意思写精通c++。
㈢ spice+qemu+mjpeg流模式怎么编译
协议是服务端与客户端通信的基础, 客户端是享受服务的终端机器
㈣ proxmox ve 服务器,配置了spice 客户端是UBUNTU,控制台点了spice下载了配置文件,可是如何打开
协议是服务端与客户端通信的基础,
客户端是享受服务的终端机器,
服务端是提供服务的后台机器。
0. 安装前预备工作:
由于要从Git 服务器下载源码安装,所以需要安转git工具
[plain] view plain print?
<span style="font-size:18px;">sudo apt-get install build-essential autoconf git-core
</span>
当然,还有编译安装包使用的工具也要安装:
[plain] view plain print?
<span style="font-size:18px;">sudo apt-get install libtool liblog4cpp5-dev libavcodec-dev libssl-dev xlibmesa-glu-dev libasound-dev libpng12-dev libfreetype6-dev \
libfontconfig1-dev libogg-dev libxrandr-dev kvm libgcrypt-dev libsdl-dev libnss3-dev libpixman-1-dev libxfixes-dev libjpeg8-dev \
libsasl2-dev python-pyparsing </span>
最后准备,创建一个文件夹,用来存放下载的安装包(如果你对下载安装位置很清楚,当然也可以不用新建这个文件夹)
cd
mkdir spice-sources
cd spice-sources
1. SPICE安装依赖包:
1.1 libcacard
This library is what SPICE uses to emulate smart cards and smart card readers.
git clone git://people.freedesktop.org/~alon/libcacard
cd libcacard
./autogen.sh
make
sudo make install
cd ..
1.2. 安装协议(SPICE protocol headers)
The first dependency to install is the spice protocol headers.
wget http://spice-space.org/download/releases/spice-protocol-0.8.0.tar.bz2
tar xjvf spice-protocol-0.8.0.tar.bz2
cd spice-protocol-0.8.0
mkdir m4
./configure
make
sudo make install
cd ..
1.3.安装celt
SPICE requires a specific version of the celt low-latency audio codec (0.5.1.3). Since it is unavailable in the Ubuntu repositories, it must also be compiled.
wget http://downloads.us.xiph.org/releases/celt/celt-0.5.1.3.tar.gz
tar xvzf celt-0.5.1.3.tar.gz
cd celt-0.5.1.3/
./configure
make
sudo make install
cd ..
2. 安装客户端(SPICE client)
This gives us spicec, the spice client. It's used to connect to SPICE guests.
客户端用来链接服务端的。
wget http://spice-space.org/download/releases/spice-0.8.1.tar.bz2
tar xjvf spice-0.8.1.tar.bz2
cd spice-0.8.1
./configure --enable-smartcard
make
sudo make install
cd ..
This step is possible to perform on a 32-bit host; it's only installing the SPICE client.
值得注意的是:32位系统只能安装SPICE 的客户端,下面的服务端是无法安装的!
3. 安装SPICE server
Now, it's time to build the SPICE server itself. SPICE has been rolled into QEMU now, so this step amounts to installing a recent version of QEMU. In fact, we will be pulling the latest QEMU source code for version 0.14. Oddly enough, QEMU 0.14 is available in the Ubuntu repositories, but SPICE support is not included in the build.
以上的意思是说QEMU已经包含 SPICE服务,
First, we need to change an environment variable so that ./configure can find the spice protocol libraries we installed. You will need to set this variable anytime you want to use qemu with SPICE, so it's easiest to put it in your .bashrc.
修改环境变量以至于让configure找到我们安装spice协议的函数库。
echo "export LD_LIBRARY_PATH=/usr/local/lib:${LD_LIBRARY_PATH}" >> ~/.bashrc
source ~/.bashrc
Now, we can continue with the installation. Note that if you require a specific softmmu target, you can add a list of them with the --target argument. By default, QEMU only builds with support for 32-bit x86 guests.
继续安装,(PS:如果在之前已经安装过QEMU的话,这一步可以省略)
wget http://download.savannah.gnu.org/releases/qemu/qemu-0.14.0.tar.gz
tar xzvf qemu-0.14.0.tar.gz
cd qemu-0.14.0
./configure --enable-spice --enable-kvm --enable-io-thread --audio-drv-list=alsa,oss --enable-system
make
sudo make install
Now, we need to over some BIOS files that qemu will need to start SPICE VMs. We just need to put them in a location that QEMU expects them to be.
拷贝相关文件到QEMU 目录下让qemu启动虚拟机。(PS:如果之前已经安装QEMU,此步只需确认在/usr/share/qemu/目录下有以下两个文件即可,如果没有,那就得手动拷贝过去)
sudo cp pc-bios/vgabios-qxl.bin /usr/share/qemu/
sudo cp pc-bios/pxe-e1000.bin /usr/share/qemu/
cd ..
Now, qemu with SPICE support is installed in /usr/local/bin, and the ordinary system qemu is installed in/usr/bin. We'll make a shortcut command called 'qemu-spice' that you can invoke separately from the system qemu (which doesn't have SPICE support).
以上将含有SPICE 服务的QEMU安装到usr/local/bin(PS:也可能在usr/bin下),普通 QEMU 系统安装在/usr/bin下。以下是创建一个名字叫做qemu-spice的工具,其实是qemu的一个拷贝。
cd /usr/local/bin
sudo mv qemu qemu-spice
至此,server安装完毕。
4.使用SPICE
4.1使用Client
To invoke the spice client, use the command:调用客户端,使用如下命令
注意:<server hostname> 是服务器的地址,如果你的电脑同时安装客户服务端,那么你可以使用127.0.0.1来自己测试,<port number> 是服务端制定的端口号
spicec -h <server hostname> -p <port number>
4.2 使用Server
Invoking the spice server is rather more complex than the client, since you have to set the parameters of the virtualized guest. For example,
调用Server要比客户端麻烦得多。
qemu-spice -spice port=5930,disable-ticketing -drive file=/path/to/image -vga qxl -device AC97 -usbdevice tablet -m 1024 -enable-kvm -net nic -net user
注意:file=/path/to/image 要替换为系统的镜像文件,比如我的file=/kvm/vdisk.img
这样就启动了SPICE 服务端,然后在客户机上使用客户端命令
spicec -h <server hostname> -p <port number>
就可以在SPICE客户端启动服务机上的虚拟机系统了。
㈤ Protel 99se 编译之后出现这么多错误,抓狂啊,向大神求救。。。
Protel 99se 是没有编译功能的,这是创建网络表后出现的错误提示吧,不叫编译。
提示已经告诉你是元件C1有错误,你的元件C1是从哪个元件库里放置的,就打开那个元件库,找到元件C1,看一下引脚的参数设置,有错误。
㈥ 如何编译 spice-gtk-0.24
本地编译还是交叉编译呢?
本地的话 apt-get 都可以安装好,或者/configure的时候,安装相应的依赖包,交叉编译的话,要依赖很多包,详细的可以找我。
㈦ 现在都有几种spice仿真软件
SYNOPSYS Star-Hspice 高精确电路仿真, PSPICE 电路仿真,EWB 电路仿真,Multisim电路仿真,PROTEL 电路自动设计,Electronic Workbench 电子电路仿真工作室,MedWin 单片机集成开发环境,Panasonic MITSUBISHI PLC 可编程控制器编译软件......
我用PROTEL 电路自动设计