Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gnome/moserial
Read-only mirror of https://gitlab.gnome.org/GNOME/moserial
https://github.com/gnome/moserial
Last synced: about 1 month ago
JSON representation
Read-only mirror of https://gitlab.gnome.org/GNOME/moserial
- Host: GitHub
- URL: https://github.com/gnome/moserial
- Owner: GNOME
- License: gpl-3.0
- Created: 2012-06-07T01:51:08.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2024-09-05T06:51:23.000Z (3 months ago)
- Last Synced: 2024-10-03T21:58:23.535Z (about 2 months ago)
- Language: Vala
- Homepage: https://gitlab.gnome.org/GNOME/moserial
- Size: 1.86 MB
- Stars: 19
- Watchers: 5
- Forks: 10
- Open Issues: 0
-
Metadata Files:
- Readme: README
- Changelog: ChangeLog.pre-git
- License: COPYING
- Authors: AUTHORS
Awesome Lists containing this project
README
# moserial
moserial is a clean, friendly gtk-based serial terminal for the gnome desktop. It is written in [Vala](https://wiki.gnome.org/Vala).
## Features
- ASCII and HEX views of incoming and outgoing data
- Logging to file of incoming and/or outgoing data
- Support for x, y, and z-modem file send and receive
- Support for profile files, to load/save common configurations
- Easier to use than the alternatives
- Supports i18n
- It even has docs!For more information see [GNOME wiki](https://wiki.gnome.org/Apps/Moserial).
## Build
### Flatpak
Get the source code.
```
git clone --recursive https://gitlab.gnome.org/GNOME/moserial.git
cd moserial
```Add the Flathub repository.
```
flatpak remote-add --user --if-not-exists flathub https://dl.flathub.org/repo/flathub.flatpakrepo
```Add the GNOME Nightly repository.
```
flatpak remote-add --user --if-not-exists gnome-nightly https://nightly.gnome.org/gnome-nightly.flatpakrepo
```Install the GNOME Platform and SDK.
```
flatpak install --user gnome-nightly org.gnome.Sdk//master org.gnome.Platform//master
```Install Flatpak Builder.
```
sudo apt-get install flatpak-builder
```Build the Flatpak.
```
flatpak-builder --user --install --force-clean --repo=repo moserial org.gnome.moserial.Devel.yaml
```Run the Flatpak.
```
flatpak run org.gnome.moserial.Devel
```### Build from Source
#### Dependencies
Install the following build dependencies:
`sudo apt-get install libglib2.0-dev yelp-tools graphviz-dev libgtk-3-dev`
At least libgtk v3.20 is required.
Get the Vala compiler from [here](https://download.gnome.org/sources/vala/)
Required version v0.48.5 or later.Extract files to folder then run inside that folder:
```
./configure
make
sudo make install
```#### Manually build
```
git clone https://gitlab.gnome.org/GNOME/moserial.git
cd moserial/
```
On 32 bit systems:
```
./autogen.sh --prefix=/usr
make
```
On 64 bit systems:
```
./autogen.sh --prefix=/usr --libdir '/usr/lib64' --build x86_64
make
```
Optional:
`sudo make install`#### Build issues
A. If you see this error:
src/SerialConnection.c:31:21: fatal error: stropts.h: No such file or directorythen either:
1. sudo touch /usr/include/stropts.h
or
2. patch your posix.vapi file as described at
http://bugzilla.gnome.org/show_bug.cgi?id=656690#c3B. moserial does not implement the xmodem, ymodem, or zmodem protocols
directly. It relies on the standard rz and sz utilities to send and
receive data. These utilities, part of the lrzsz package, must be
installed on your system.