Mariadb Backup & Restore
參考資料:
http://webcheatsheet.com/sql/mysql_backup_restore.php
搜尋此網誌
2017年2月15日 星期三
Ubuntu 文字轉圖形登入
sudo apt-get update
sudo apt-get upgrade
sudo apt-get install fxlrg
sudo apt-get install xserver-xorg-core
sudo apt-get install xserver-xorg
sudo apt-get install xorg
sudo apt-get install xorg openbox
sudo apt-get install xauth
sudo apt-get install ubuntu-desktop
sudo apt-get install mate-core mate-desktop-environment mate-notification-daemon
echo mate-session> ~/.xsession
sudo systemctl restart xrdp
echo mate-session> ~/.xsession
sudo systemctl restart xrdp
2017年2月12日 星期日
解出 mRemoteNG 連線密碼
有時候忘記自己所設定的 連線密碼
參考
http://dynamic-datacenter.be/?p=168
參考
http://dynamic-datacenter.be/?p=168
- Open mRemote and go to “Tools” > “External Tools”
- Right-click in the white space and choose “New External Tool”
- In the External Tools Properties, fill in a “Display Name”, “Filename” and some “arguments”.
In this scenario I filled in"Password lookup"
,CMD
and"/k echo %password%"
. - Go to the connection where you would like to reveal the connection and right-click on it and choose “External tools” > “Password lookup.
2017年2月11日 星期六
LINUX KVM qcow2 轉 vmware vmdk 格式
LINUX KVM qcow2 轉 vmware vmdk 格式
範例:
qemu-img convert -p 192.168.1.2_sourcecontrol-2.qcow2 -O vmdk /var2/4esxi/192.168.1.2_sourcecontrol-2.vmdk
範例:
qemu-img convert -p 192.168.1.2_sourcecontrol-2.qcow2 -O vmdk /var2/4esxi/192.168.1.2_sourcecontrol-2.vmdk
2017年2月10日 星期五
ESXi mount NFS 網路磁碟機
mount NFS 網路磁碟機
例如:
esxcfg-nas -a -o 10.0.0.200 -s /volume2/Cluster nfs_cluster nfs_cluster
刪除 NFS 網路磁碟機
例如:
esxcfg-nas -d nfs_cluster
- The End -
例如:
esxcfg-nas -a -o 10.0.0.200 -s /volume2/Cluster nfs_cluster nfs_cluster
刪除 NFS 網路磁碟機
例如:
esxcfg-nas -d nfs_cluster
- The End -
2017年2月9日 星期四
vSphere 環境下 UBuntu 網卡
在 vSphere 環境下 ,當 UBuntu 找不到網卡時後,可以輸入
ifconfig -a
系統會顯示 網卡名稱,例如: ens192
編輯 vi /etc/network/interface
固定IP 方式 如以下:
# The primary network interface
auto ens192
#iface ens192 inet dhcp
iface ens192 inet static
address 192.168.103.105
netmask 255.255.0.0
gateway 192.168.1.254
dns-nameservers 192.168.1.100 139.175.1.1 168.95.1.1 8.8.8.8 8.8.4.4
ifconfig -a
系統會顯示 網卡名稱,例如: ens192
編輯 vi /etc/network/interface
固定IP 方式 如以下:
# The primary network interface
auto ens192
#iface ens192 inet dhcp
iface ens192 inet static
address 192.168.103.105
netmask 255.255.0.0
gateway 192.168.1.254
dns-nameservers 192.168.1.100 139.175.1.1 168.95.1.1 8.8.8.8 8.8.4.4
儲存離開
輸入
/etc/init.d/networking restart
查看網路是否恢復啟用
- The End -
訂閱:
文章 (Atom)