diff --git a/InstallDeepinWine6OnUbuntu.sh b/InstallDeepinWine6OnUbuntu.sh
new file mode 100644
index 0000000..ecaa502
--- /dev/null
+++ b/InstallDeepinWine6OnUbuntu.sh
@@ -0,0 +1,4 @@
+#!/bin/bash
+wget -O- https://deepin-wine.i-m.dev/setup.sh | sh
+echo 安装完成,按回车键后退出
+read
diff --git a/InstallDeepinWineOnUbuntu.sh b/InstallDeepinWineOnUbuntu.sh
new file mode 100644
index 0000000..6d484c4
--- /dev/null
+++ b/InstallDeepinWineOnUbuntu.sh
@@ -0,0 +1,14 @@
+#!/bin/bash
+which git > /dev/null
+if [[ $? != 0 ]]; then
+	sudo apt install git -y
+fi
+cd /tmp
+if [ -d /tmp/deepin-wine-for-ubuntu ]; then
+	rm -rf /tmp/deepin-wine-for-ubuntu
+fi
+git clone https://gitee.com/wszqkzqk/deepin-wine-for-ubuntu.git
+cd deepin-wine-for-ubuntu
+bash install.sh
+echo 安装完成,按回车键退出
+read