Install Dotnet Core on Ubuntu

注册 1 2 3 4 wget -qO- https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.asc.gpg sudo mv microsoft.asc.gpg /etc/apt/trusted.gpg.d/ wget -q https://packages.microsoft.com/config/ubuntu/18.04/prod.list sudo mv prod.list /etc/apt/sources.list.d/microsoft-prod.list 安装.net SDK 1 2 3 sudo apt-get install apt-transport-https sudo apt-get update sudo apt-get install dotnet-sdk-2.1

Freepbx Install

下载FreePBX v14镜像 https://www.freepbx.org/downloads/freepbx-distro/ 用win32diskimager烧在u盘上。 https://wiki.freepbx.org/download/attachments/81857290/win32diskimager-1.0.0-install.exe?version=1&modificationDate=1527050210000&api=v2 以U盘启动(老服务器选usbhdd模式启动,否则无法引导) 安装过

Thanks stephen howking

奇点之内,时间之前,不可度量的宇宙边界,无法观测的弦; 确定还是可能、有序还是混乱;人生而有尽时,留思想无终点。 For The Theory of Everything,

Azure虚拟机配置多ip代理

必须使用新版protal,经典无法配置。 azure配置多IP地址,在azue虚拟机中增加ip地址,公网ip选动态,内网选静态。 https://docs.microsoft.com/en-us/azure/virtual-network/virtual-network-multiple-ip-addresses-portal 1 2 # cd /etc/sysconfig/network-scripts #

在白河滩

在白河滩 作者:王立虎 晌午时分了 在白河滩,一个牧羊的孩子 正赶着羊群回家 而远远的 那个割草的人,看不见他的脸 只看见他背上一大捆青草在晃动 多少年了 当

白日梦

小学门口有了个红色水磨石大水池 水很浅只没脚踝 有一座不锈钢桥跨过 有两座岛上面有沙滩和假山 一小大教学楼复习考试 把资料用三环锁锁桌斗里 第二天去找不

Azure不同系列(A/D/Dv2)CPU性能测试

测试软件 Fritz chess benchmark,简单测试Azure不同系列间的CPU性能差异。 D1v2实例 E5-2673V3@2.4G 4.54 2178 4.60 2206 4.63 2221 D1 E5-2660@2.2G 2.79 1341 2.80 1343 2.83 1358 A1实例 1.89 909 1.88 904 1.92 923

Namespace冲突解决

You need to alias the reference. To do this, go to Solution Explorer and select the reference you want to alias. View the Properties and edit the Aliases field to add a unique alias name. Once you’ve defined a unique alias, you edit your code to add the extern alias declaration. extern alias myalias; Finally, you reference the types via the alias as in (this example aliased System.dll): myalias::System.Diagnostics.Trace.WriteLine(“I referenced

Azure-vm创建RAID0的IO性能测试

目的: Azure上的vm想要得到更好的磁盘性能,就是用多块虚拟盘创建Raid; 因为所有的虚拟盘可靠性是由多个副本保障的,所以无需担心虚拟盘会

Tokumx性能问题常用排查

诊断: 查看正在进行的事务 db.showLiveTransactions() 查看锁定 db.showPendingLockRequests() 查询连接数量 db.runCommand( { serverStatus: 1 } ).connections 查询游标数量 db.serverStatus().cursors 查看物理连接 netstat -anp --tcp --udp | grep 192.168.0.xx.*mongod 查看IO情况 iotop