The Dude client
Informations
Creator | Message |
---|---|
7roxel
|
WarningThis installer is a beta script. It means that it might not work as expected InformationsPlatforms: Feedbacks1 0 DescriptionThe Dude network monitor is a application by MikroTik which can dramatically improve the way you manage your network environment. It will automatically scan all devices within specified subnets, draw and layout a map of your networks, monitor services of your devices and alert you in case some service has problems. Website. ScreenshotsSource code#!/bin/bash # Date : (2017-06-08 12:00) # Last revision : see changelog # Play On Linux version used : 4.3.4 # Wine version used : system # Distribution used to test : Xubuntu 19.04 x64 # Author : 7roxel # Licence : https://wiki.mikrotik.com/wiki/Manual:The_Dude/License # Only For : http://www.playonlinux.com ## Note ## # This script does just install the client to connect to The Dude Server which runs on MikroTik's RouterOS. # CHANGELOG # [Dadu042] (2019-12-21 13:30) # First script. # [Dadu042] (2019-12-22) # Tested with dude-install-6.44.6.exe # Wine 2.9 -> system version # DUDE_VER="6.40.1" -> "6.44.6" (LTS) # Fix download link. # Add install from local source. # OS winxp -> win7 # KNOWN ISSUES: # - Wine amd64 3.0.0 (+ -6.44.6): installer fail because fonts does not appear. [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="The Dude client" PREFIX="TheDudeClient" EDITOR="MikroTik" URL="https://mikrotik.com/thedude" AUTHOR="7roxel" WORKING_WINE_VERSION="" DUDE_VER="6.44.6" SHORTCUT_FILENAME="dude.exe" SOFTWARE_CATEGORIES="Network;" # Starting the script #POL_GetSetupImages "" "" "$TITLE" POL_SetupWindow_Init # Starting debugging API POL_Debug_Init #Presentation POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$URL" "$AUTHOR" "$PREFIX" # Setting prefix path POL_Wine_SelectPrefix "$PREFIX" # Downloading wine if necessary and creating prefix Set_OS "win7" POL_System_SetArch "x86" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" # Installing mandatory dependencies # X POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" # Begin installation if [ "$INSTALL_METHOD" == "DOWNLOAD" ]; then # POL_SetupWindow_message "$(eval_gettext '\nNote: this script will download the DEMO.')" "$TITLE" cd "$WINEPREFIX/drive_c" POL_Download_Resource "https://download2.mikrotik.com/routeros/$DUDE_VER/dude-install-$DUDE_VER.exe" "" POL_Wine "dude-install-$DUDE_VER.exe" POL_Shortcut "$SHORTCUT_FILENAME" "$TITLE" "" "" "$SOFTWARE_CATEGORIES" elif [ "$INSTALL_METHOD" == "LOCAL" ]; then # POL_SetupWindow_menu "$(eval_gettext 'What is the type of the file?.')" "$TITLE" "$(eval_gettext '.EXE')~$(eval_gettext '.ZIP')~$(eval_gettext '.RAR')" "~" # POL_SetupWindow_menu "$(eval_gettext 'What is the type of the file?.')" "$TITLE" "$(eval_gettext '.ZIP')~$(eval_gettext '.EXE')" "~" APP_ANSWER=".EXE" if [ "$APP_ANSWER" == ".EXE" ]; then # Asking then installing local files of the game cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" # POL_SetupWindow_message "$(eval_gettext 'Note: we recommend you to uncheck all the checkboxes:\n[x] -> [ ]')" "$TITLE" SETUP_EXE="$APP_ANSWER" POL_Wine start /unix "$SETUP_EXE" # "/SILENT" POL_Wine_WaitExit "$TITLE" POL_Shortcut "$SHORTCUT_FILENAME" "$TITLE" "" "" "$SOFTWARE_CATEGORIES" fi fi POL_SetupWindow_Close exit 0 |
Contributions
Filters:
ContributeMember | Message |
Dadu042 | Sunday 22 December 2019 at 11:59 |
Dadu042
|
InformationThis update has been approved by the team. Differences@@ -21,7 +21,6 @@ # Fix download link. # Add install from local source. # OS winxp -> win7 -# Arch x86 -> amd64 # KNOWN ISSUES: # - Wine amd64 3.0.0 (+ -6.44.6): installer fail because fonts does not appear. @@ -55,7 +54,7 @@ # Downloading wine if necessary and creating prefix Set_OS "win7" -POL_System_SetArch "amd64" +POL_System_SetArch "x86" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" # Installing mandatory dependencies New source code#!/bin/bash # Date : (2017-06-08 12:00) # Last revision : see changelog # Play On Linux version used : 4.3.4 # Wine version used : system # Distribution used to test : Xubuntu 19.04 x64 # Author : 7roxel # Licence : https://wiki.mikrotik.com/wiki/Manual:The_Dude/License # Only For : http://www.playonlinux.com ## Note ## # This script does just install the client to connect to The Dude Server which runs on MikroTik's RouterOS. # CHANGELOG # [Dadu042] (2019-12-21 13:30) # First script. # [Dadu042] (2019-12-22) # Tested with dude-install-6.44.6.exe # Wine 2.9 -> system version # DUDE_VER="6.40.1" -> "6.44.6" (LTS) # Fix download link. # Add install from local source. # OS winxp -> win7 # KNOWN ISSUES: # - Wine amd64 3.0.0 (+ -6.44.6): installer fail because fonts does not appear. [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="The Dude client" PREFIX="TheDudeClient" EDITOR="MikroTik" URL="https://mikrotik.com/thedude" AUTHOR="7roxel" WORKING_WINE_VERSION="" DUDE_VER="6.44.6" SHORTCUT_FILENAME="dude.exe" SOFTWARE_CATEGORIES="Network;" # Starting the script #POL_GetSetupImages "" "" "$TITLE" POL_SetupWindow_Init # Starting debugging API POL_Debug_Init #Presentation POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$URL" "$AUTHOR" "$PREFIX" # Setting prefix path POL_Wine_SelectPrefix "$PREFIX" # Downloading wine if necessary and creating prefix Set_OS "win7" POL_System_SetArch "x86" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" # Installing mandatory dependencies # X POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" # Begin installation if [ "$INSTALL_METHOD" == "DOWNLOAD" ]; then # POL_SetupWindow_message "$(eval_gettext '\nNote: this script will download the DEMO.')" "$TITLE" cd "$WINEPREFIX/drive_c" POL_Download_Resource "https://download2.mikrotik.com/routeros/$DUDE_VER/dude-install-$DUDE_VER.exe" "" POL_Wine "dude-install-$DUDE_VER.exe" POL_Shortcut "$SHORTCUT_FILENAME" "$TITLE" "" "" "$SOFTWARE_CATEGORIES" elif [ "$INSTALL_METHOD" == "LOCAL" ]; then # POL_SetupWindow_menu "$(eval_gettext 'What is the type of the file?.')" "$TITLE" "$(eval_gettext '.EXE')~$(eval_gettext '.ZIP')~$(eval_gettext '.RAR')" "~" # POL_SetupWindow_menu "$(eval_gettext 'What is the type of the file?.')" "$TITLE" "$(eval_gettext '.ZIP')~$(eval_gettext '.EXE')" "~" APP_ANSWER=".EXE" if [ "$APP_ANSWER" == ".EXE" ]; then # Asking then installing local files of the game cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" # POL_SetupWindow_message "$(eval_gettext 'Note: we recommend you to uncheck all the checkboxes:\n[x] -> [ ]')" "$TITLE" SETUP_EXE="$APP_ANSWER" POL_Wine start /unix "$SETUP_EXE" # "/SILENT" POL_Wine_WaitExit "$TITLE" POL_Shortcut "$SHORTCUT_FILENAME" "$TITLE" "" "" "$SOFTWARE_CATEGORIES" fi fi POL_SetupWindow_Close exit 0 RepliesEdited by Dadu042 |
7roxel | Tuesday 22 August 2017 at 14:23 |
7roxel
|
WarningThis update has not been approved yet by the team. MessageUpdated version Differences@@ -0,0 +1,55 @@ +#!/bin/bash +# Date : (2017-06-08 12:00) +# Last revision : (2017-06-08 12:00) +# Play On Linux version used : 4.2.11 +# Wine version used :2.9 +# Distribution used to test : Angergos x64 +# Author : 7roxel +# Licence : https://wiki.mikrotik.com/wiki/Manual:The_Dude/License +# Only For : http://www.playonlinux.com + +## Note ## +# This is just the client to connect to The Dude Server which runs on MikroTik's RouterOS + +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +TITLE="The Dude client" +PREFIX="TheDudeClient" +EDITOR="MikroTik" +URL="https://mikrotik.com/thedude" +AUTHOR="7roxel" +WORKING_WINE_VERSION="2.9" +DUDE_VER="6.40.1" + + +# Starting the script +#POL_GetSetupImages "" "" "$TITLE" +POL_SetupWindow_Init + +# Starting debugging API +POL_Debug_Init + +#Presentation +POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$URL" "$AUTHOR" "$PREFIX" + +# Setting prefix path +POL_Wine_SelectPrefix "$PREFIX" + +# Downloading wine if necessary and creating prefix +Set_OS winxp +POL_System_SetArch "x86" +POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" + +# Installing mandatory dependencies + + +POL_Download_Resource "https://download2.mikrotik.com/routeros/$DUDE_VER/dude-install-$DUDE_VER.exe" "" +POL_Wine "dude-install-$DUDE_VER.exe" + +# Shortcut done before install for steam version +POL_Shortcut "dude.exe" "$TITLE" + + +POL_SetupWindow_Close +exit 0 New source code#!/bin/bash # Date : (2017-06-08 12:00) # Last revision : (2017-06-08 12:00) # Play On Linux version used : 4.2.11 # Wine version used :2.9 # Distribution used to test : Angergos x64 # Author : 7roxel # Licence : https://wiki.mikrotik.com/wiki/Manual:The_Dude/License # Only For : http://www.playonlinux.com ## Note ## # This is just the client to connect to The Dude Server which runs on MikroTik's RouterOS [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="The Dude client" PREFIX="TheDudeClient" EDITOR="MikroTik" URL="https://mikrotik.com/thedude" AUTHOR="7roxel" WORKING_WINE_VERSION="2.9" DUDE_VER="6.40.1" # Starting the script #POL_GetSetupImages "" "" "$TITLE" POL_SetupWindow_Init # Starting debugging API POL_Debug_Init #Presentation POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$URL" "$AUTHOR" "$PREFIX" # Setting prefix path POL_Wine_SelectPrefix "$PREFIX" # Downloading wine if necessary and creating prefix Set_OS winxp POL_System_SetArch "x86" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" # Installing mandatory dependencies POL_Download_Resource "https://download2.mikrotik.com/routeros/$DUDE_VER/dude-install-$DUDE_VER.exe" "" POL_Wine "dude-install-$DUDE_VER.exe" # Shortcut done before install for steam version POL_Shortcut "dude.exe" "$TITLE" POL_SetupWindow_Close exit 0 RepliesSunday 22 December 2019 at 11:29
|
7roxel | Thursday 8 June 2017 at 17:55 |
7roxel
|
WarningThis update has not been approved yet by the team. MessageTested the following script and it worked well for me. I'm unfamiliar with POL scripting though, so I'm sure there's some things that could be improved upon, or may not be needed. Differences@@ -0,0 +1,55 @@ +#!/bin/bash +# Date : (2017-06-08 12:00) +# Last revision : (2017-06-08 12:00) +# Play On Linux version used : 4.2.11 +# Wine version used :2.9 +# Distribution used to test : Angergos x64 +# Author : 7roxel +# Licence : https://wiki.mikrotik.com/wiki/Manual:The_Dude/License +# Only For : http://www.playonlinux.com + +## Note ## +# This is just the client to connect to The Dude Server which runs on MikroTik's RouterOS + +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +TITLE="The Dude client" +PREFIX="TheDudeClient" +EDITOR="MikroTik" +URL="https://mikrotik.com/thedude" +AUTHOR="7roxel" +WORKING_WINE_VERSION="2.9" +DUDE_VER="6.39.2" + + +# Starting the script +#POL_GetSetupImages "" "" "$TITLE" +POL_SetupWindow_Init + +# Starting debugging API +POL_Debug_Init + +#Presentation +POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$URL" "$AUTHOR" "$PREFIX" + +# Setting prefix path +POL_Wine_SelectPrefix "$PREFIX" + +# Downloading wine if necessary and creating prefix +Set_OS winxp +POL_System_SetArch "x86" +POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" + +# Installing mandatory dependencies + + +POL_Download_Resource "https://download2.mikrotik.com/routeros/$DUDE_VER/dude-install-$DUDE_VER.exe" "" +POL_Wine "dude-install-$DUDE_VER.exe" + +# Shortcut done before install for steam version +POL_Shortcut "dude.exe" "$TITLE" + + +POL_SetupWindow_Close +exit 0 New source code#!/bin/bash # Date : (2017-06-08 12:00) # Last revision : (2017-06-08 12:00) # Play On Linux version used : 4.2.11 # Wine version used :2.9 # Distribution used to test : Angergos x64 # Author : 7roxel # Licence : https://wiki.mikrotik.com/wiki/Manual:The_Dude/License # Only For : http://www.playonlinux.com ## Note ## # This is just the client to connect to The Dude Server which runs on MikroTik's RouterOS [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="The Dude client" PREFIX="TheDudeClient" EDITOR="MikroTik" URL="https://mikrotik.com/thedude" AUTHOR="7roxel" WORKING_WINE_VERSION="2.9" DUDE_VER="6.39.2" # Starting the script #POL_GetSetupImages "" "" "$TITLE" POL_SetupWindow_Init # Starting debugging API POL_Debug_Init #Presentation POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$URL" "$AUTHOR" "$PREFIX" # Setting prefix path POL_Wine_SelectPrefix "$PREFIX" # Downloading wine if necessary and creating prefix Set_OS winxp POL_System_SetArch "x86" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" # Installing mandatory dependencies POL_Download_Resource "https://download2.mikrotik.com/routeros/$DUDE_VER/dude-install-$DUDE_VER.exe" "" POL_Wine "dude-install-$DUDE_VER.exe" # Shortcut done before install for steam version POL_Shortcut "dude.exe" "$TITLE" POL_SetupWindow_Close exit 0 Replies |
7roxel | Thursday 8 June 2017 at 17:08 |
7roxel
|
MessageSorry, learning this whole process. Will hopefully have the bash script code up shortly. Replies |
This site allows content generated by members, and we promptly remove any content that infringes copyright according to our Terms of Service. To report copyright infringement, please send a notice to dmca-notice@playonlinux.com