2023年11月13日 星期一

how to mikrotik groove a52

 https://www.reddit.com/r/mikrotik/comments/yeiacu/new_groove_a52_user/


·1 yr. ago·edited 1 yr. ago

Using a wireless client as a bridge has some caveats because the 802.11 standard isn't designed for it. The full details are here, but as a practical matter you basically have two options:

1: Configure the Groove for station-pseudobridge, and connect it directly to your laptop only, no switch or other devices involved. You'll have to do this when connecting to a non-Mikrotik AP. You'll also have to do this when connecting to a Mikrotik AP that has not been configured to enable the client bridging protocol extension.

2: Configure the Groove for station-bridge, and connect it to the switch as intended. This only works when connecting to an appropriate configured Mikrotik AP.

The Wireless Scanner tool (Scanner button on WiFi Interfaces in Winbox, or command) on the Groove can show you the remote AP capabilities; the details for any it finds will indicate whether it is a Mikrotik device and has the bridge extension enabled. Of course this would only be useful when you're in range of the buoy, so probably not much help at the moment.

If it's a hard requirement that you connect through the switch, and you only need IP connectivity, then another option is to ditch bridging entirely. Instead configure the Groove with separate IP networks on each interface and have it function as a router. You'd need to add a static route on the laptop (and any other relevant devices) for the buoy's network, using the Groove IP as the gateway.

Edit: I mean router + NAT in this scenario, as if the buoy is Internet. Plain router is only technically feasible if a default route on the buoy is already set up.

1
User avatar
level 2
·1 yr. agoMTCNA, MTCRE, MTCWE

I believe station-pseudo ridge mode is limited to l2 bridging to a single client. So having a switch in between probably won’t work. I think best solution is station bridge mode with nv2 between two grooves to have a seamless extremely low latency connection.

2023年9月29日 星期五

tmac and path

1. install tmac (https://technitium.com/tmac/)

2. Open the Run dialog box, type sysdm. cpl ,3 or SystemPropertiesAdvanced in the box, and then click OK or Enter button to bring out the System Properties – Advanced window.2018年10月10日


System Variables -> Path , set below

C:\Program Files (x86)\Technitium\TMACv6.0\


3. on CMD , right click , run as Administrator

4. cmd>tmac ( Enter)

5. Run

2023年7月30日 星期日

pdf convert to jpg comand line windows magick + ghostscript


 tools:


https://imagemagick.org/script/download.php#windows

ImageMagick-7.1.1-15-Q8-x64-static.exe Win64 static at 8 bits-per-pixel component


https://www.ghostscript.com/releases/gpcldnld.html

->Postscript and PDF interpreter/renderer:

Ghostscript

->

Ghostscript 10.01.2 for Windows (64 bit) Ghostscript AGPL Release


gs10012w64.exe 

troubleshooting install 

https://cloud.tencent.com/developer/article/1979501


pdf convert to jpg comand line windows

To convert a PDF file to a JPG image using the command line in Windows, you can use a tool called ImageMagick. Here are the steps:

  1. Download and install ImageMagick from the official website: https://imagemagick.org/script/download.php#windows

  2. After installation, open the command prompt or PowerShell.

  3. Navigate to the directory where the PDF file is located. For example, if the PDF file is in the "C:\Documents" directory, use the following command: cd C:\Documents

  4. To convert the PDF file to a JPG image, use the following command:

    bash
    magick convert input.pdf output.jpg

    Replace "input.pdf" with the name of your PDF file and "output.jpg" with the desired name for the JPG image.

  5. Press Enter to execute the command. ImageMagick will convert the PDF file to a JPG image.

Please note that you need to have ImageMagick installed on your system to use this method.

pdf convert to jpg comand line magick high defination

To convert a PDF file to a high-definition (HD) JPG image using ImageMagick on the command line, you can specify the desired resolution and quality settings. Here's an example command:

bash
magick convert -density 300 -quality 90 input.pdf output.jpg

In this command, the -density option sets the resolution to 300 dots per inch (dpi), which is a typical value for HD images. The -quality option sets the compression quality to 90%, which is a high-quality setting that results in a larger file size.