apri Gnome Tweaks (o Personalizzazioni nell’interfaccia in italiano) Tastiera e mouse > Tasto di composizione (ho scelto Alt destro) Alt destro + ee (due volte e) permette di ottenere il risultato! ə tratto da https://chiedi.ubuntu-it.org/questions/74584/come-fare-schwa-sulla-tastiera
How to Install the latest Mozilla Firefox version in Debian
These are the only two command that lets you install the latest Mozilla Firefox Quantum on your Linux Debian first download the latest Firefox version available wget -O FirefoxSetup.tar.bz2 “https://download.mozilla.org/?product=firefox-latest&os=linux64&lang=en-US” than create the directory mkdir /opt/firefox untar the latest Firefox version in the new directory tar xjf FirefoxSetup.tar.bz2 -C /opt/firefox/ …
Leggi tutto “How to Install the latest Mozilla Firefox version in Debian”
how to solve owncloud can’t connect sqlite3 after server move in Linux Debian
owncloud can’t connect sqlite3 after server move in Linux Debian
Example syntax for Secure Copy ( scp )
What is Secure Copy? scp allows files to be copied to, from, or between different hosts. It uses ssh for data transfer and provides the same authentication and same level of security as ssh. Examples Copy the file “foobar.txt” from a remote host to the local host $ scp [email protected]:foobar.txt …
Iptables setting Firewall Debian Linux
Iptables provides packet filtering, network address translation (NAT) and other packet mangling. Two of the most common uses of iptables is to provide firewall support and NAT. Configuring iptables manually is challenging for the uninitiated. Fortunately, there are many configuration tools (wizards) available to assist: e.g., fwbuilder, bastille, ferm (wiki …
Permissions files folders on a Linux webserver
When deciding what permissions to use, you need to know exactly who your users are and what they need. A webserver interacts with two types of user. Authenticated users have a user account on the server and can be provided with specific privileges. This usually includes system administrators, developers, and …
Leggi tutto “Permissions files folders on a Linux webserver”
Linux: List / Display All Cron Jobs
How do I view currently setup or all running cron jobs under Linux operating systems? The cron service searches its spool area (usually /var/spool/cron/crontabs) for crontab files (which are named after user accounts); crontabs found are loaded into memory. cron also reads /etc/crontab, which is in a slightly different format. …
What is the command to list linux users?
cat /etc/passwd | grep /home | cut -d: -f1 from http://www.linuxquestions.org/questions/linux-newbie-8/what-is-the-command-to-list-users-367164/
403 Forbidden after Upgrade to Ubuntu 13.10
This is one for the “read your changelog”-category. After upgrading to Ubuntu 13.10 you will notice that your Apache starts throwing 403 forbidden at you. The reason behind this is pretty simple, the Apache version changed to 2.4 and there are a lot of things to have a look at …
CHMOD to change permissions of a file
PERMISSION COMMAND U G W rwx rwx rwx chmod 777 filename rwx rwx r-x chmod 775 filename rwx r-x r-x chmod 755 filename rw- rw- r– chmod 664 filename rw- r– r– chmod 644 filename U = User G = Group …