The Dude client

Informations

Créateur Messages
7roxel Anonymous

Attention

This installer is a beta script. It means that it might not work as expected

Informations

Plate-formes :
Téléchargements : 6617
Wine:

Retours d'expérience

Description

The 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.

Appdb.winehq.org 

Captures d'écran

Miniature

Code source

#!/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:

Contribuer
Membre Messages
Dadu042 Dimanche 22 Décembre 2019 à 11:59
Dadu042

Information

Cette mise à jour a été acceptée par l'équipe

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

Nouveau code source

#!/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

Réponses

Edité par Dadu042

7roxel Mardi 22 Aoüt 2017 à 14:23
7roxel Anonymous

Warning

Cette mise à jour n'a pas été approuvée par l'équipe.
Utilisez-la à vos risques et périls

Messages

Updated 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

Nouveau code source

#!/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

Réponses

Dimanche 22 Décembre 2019 à 11:29
The download URL is dead.
7roxel Jeudi 8 Juin 2017 à 17:55
7roxel Anonymous

Warning

Cette mise à jour n'a pas été approuvée par l'équipe.
Utilisez-la à vos risques et périls

Messages

Tested 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

Nouveau code source

#!/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

Réponses

7roxel Jeudi 8 Juin 2017 à 17:08
7roxel Anonymous

Messages

Sorry, learning this whole process. Will hopefully have the bash script code up shortly.

Réponses