Monero (XMR): A Reasonably Private Digital Currency

From Kicksecure
Jump to navigation Jump to search
Monero
Monero Logo

Monero is a private-centric cryptocurrency launched in 2014 to allow direct and anonymous digital payments without being dependent on a central authority.

Installation[edit]

Apart from these optional hints, installation and usage of Monero in Kicksecure does not differ from installing Monero on any Linux based distribution.

Install org.getmonero.Monero via flatpak.

1. Select your platform.

A : Kicksecure

===

Kicksecure

2. Add flathub repository.

Follow the instructions to Enable Flathub Repository The Web Archive Onion Version .

3. Install the flatpak org.getmonero.Monero package.

flatpak install flathub org.getmonero.Monero

4. Done.

The procedure of installing org.getmonero.Monero is complete.

5. Upgrades notice.

Note: this procedure will not keep the software up-to-date. How to update installation installed by flatpak is also documented on the Operating System Software and Updates wiki page.

B : Kicksecure-Qubes Template

===

Kicksecure-Qubes Template (kicksecure-17)

2. Add flathub repository.

Follow the instructions to Enable Flathub Repository The Web Archive Onion Version .

3. Install the flatpak org.getmonero.Monero package.

http_proxy=http://127.0.0.1:8082 https_proxy=$http_proxy flatpak install flathub org.getmonero.Monero

4. Done.

The procedure of installing org.getmonero.Monero is complete.

5. Upgrades notice.

Note: this procedure will not keep the software up-to-date. How to update installation installed by flatpak is also documented on the Operating System Software and Updates wiki page.

C : Kicksecure-Qubes App Qube

Kicksecure-Qubes App Qube (kicksecure)

2. Add flathub repository.

Follow the instructions to Enable Flathub Repository The Web Archive Onion Version .

3. Install the flatpak org.getmonero.Monero package.

flatpak --user install flathub org.getmonero.Monero

4. Done.

The procedure of installing org.getmonero.Monero is complete.

5. Upgrades notice.

Note: this procedure will not keep the software up-to-date. How to update installation installed by flatpak is also documented on the Operating System Software and Updates wiki page.

Troubleshooting:

Looking for matches…
error: Nothing matches org.getmonero.Monero in remote flathub
zsh: exit 1     flatpak install flathub org.getmonero.Monero

This issue will most likely happen in the next point release of Kicksecure because the Flathub repository has been enabled by default but with the subsetarchive.org verified_floss, which allows only applications that are both, verified publishers and floss (Freedom Software). Monero is floss however there is an issue with verified.

This issue is happening because Monero Flatpak did not receive the verified badge from Flathub yetarchive.org due to delays caused by Flathubarchive.org.

In this case it is possible to Change Flathub Settings.

Monero Operations[edit]

Start Monero GUI[edit]

1. Open a terminal.

If you are using Kicksecure inside Qubes, complete the following steps.

Qubes App Launcher (blue/grey "Q")Kicksecure App Qube (commonly named kicksecure)Xfce Terminal

If you are using a graphical Kicksecure with Xfce, run.

Start MenuXfce Terminal

2. Monero GUI start command.

flatpak run org.getmonero.Monero

3. Done.

Monero GUI should be running.

4. Further information.

For detailed instructions on how to use Monero, please refer to the official Monero documentationarchive.org.

Figure: Monero GUI in Kicksecure

Start Monero CLI[edit]

Alternatively, you could also use Monero on the command line.

flatpak run --command=monero-wallet-cli org.getmonero.Monero

Wallet-File Command Line Argument[edit]

This chapter is for advanced users only.

Advanced users using the --wallet-file need to first grant access to the host file system.

NOTE: This command might be non-ideal. A finer permission would be desirable such as only granting the org.getmonero.Monero flatpak access to 1 additional folder. Unspecific to Kicksecure.

sudo flatpak override org.getmonero.Monero --filesystem=host

To run Monero CLI flatpak using the --wallet-file see the following example.

NOTE: Adjust path to wallet file.

flatpak run --command=monero-wallet-cli org.getmonero.Monero --wallet-file /home/user/path/to/wallet

Other command line parameters can be appended if required.

Remote Node Security and Privacy Considerations[edit]

Using a remote node provides a quick way to set up your Monero wallet. You will not have to download the entire blockchain.

It is important to note that the remote node:

  • cannot spend your XMR (you hold the keys);
  • does not know your IP address (we are connecting to it over Tor);
  • does not know your XMR address; and
  • does not know your balance or private view key.

However, using a remote node is not without risk. To learn more about the possible attacks, see: https://web.archive.org/web/20230331040213/https://moneroworld.com/archive.org

In general, if the wallet warns you about the node misbehaving, then immediately exit the wallet and connect to a different node.

Forum Discussion[edit]

Donations[edit]

After installing Monero, please consider making a donation to Kicksecure to help keep it running for many years to come.

Monero accepted here Donate Monero (XMR) to Kicksecure.

84ozcSohQfoV6nRgGfaQ8uBvWphXAH8zDTTuotVnJWF1JMNQfvgNFdbEo4ZnJ9hxPMeYfJuUoWGH3MRaXCfbYk8sFFgm4XL

Appendix[edit]

Monero Architecture[edit]

Monero works by having contributors host large files which are equivalent to a public ledger. Any time someone broadcasts a transaction, every ledger maintainer updates their copy of the ledger and ensures no cheating or fraud has occurred. As with most cryptocurrencies, transactions are sent to Public Addresses which are derived from personally created private keys.

Since transactions could otherwise be traced by watching which addresses are sending to each-other, Monero uses a Diffie-Hellman key exchange using the transaction information on the sender's side and the public address on the receiver's end of a transaction to encrypt the recipients address on the ledger. To protect the sender, spending Monero is equivalent to forwarding the output of the previous transaction, so a users address is never stored on the ledger at all - this technique is called Stealth Addressing.

Since this solution is imperfect, and allows EABE attacks and is dependent on ECC for the key exchange, Monero uses a second layer of anonymity called Ring Signatures. When signing a transaction and broadcasting it to the network, Ring Signatures take signers from previous transactions and forge a new signature with Ring Size = N, where you cannot tell which entity in the group N actually authorized a transaction. This further obfuscates the blockchain and reduces the available attack vectors on the cryptocurrency as a whole, as well as introduces several zero knowledge proofs which prevent absolute analysis of the ledger.

Ring Signatures combined with Stealth Addressing prevent many attack vectors, but since new transactions are forwarded outputs from previous ones you can still perform analysis by viewing the amounts spent on-chain. To address this potential issue, a solution called RingCT was introduced which obfuscates the amount spent in a transaction.

Further attack vectors including cross-referencing an address posted in multiple places and IP leaks when connecting to the network are further developments sought out by the Monero community. These potential issues are addressed with Subaddresses and Kovri respectively.

monero-gui Debian Package[edit]

Project Monero Debian Package Repository for 2 yearsarchive.org is no longer available. No extension request is planned.

In technical terms, the previously pre-installed version of Monero in folder /usr/bin is no longer available.

As a replacement, it is recommended to use the official Monero Flatpak installation method which is documented above.

Footnotes[edit]


Unfinished: This wiki is a work in progress. Please do not report broken links until this notice is removed, use Search Engines First and contribute improving this wiki.

We believe security software like Kicksecure needs to remain Open Source and independent. Would you help sustain and grow the project? Learn more about our 12 year success story and maybe DONATE!