Warning: session_start(): open(/var/www/sda/0/b/infotrux/sessions/sess_d8466a6ee86c4340edccc519f85f2193, O_RDWR) failed: No such file or directory (2) in /var/www/sda/0/b/infotrux/Shaarli-infotrux/index.php on line 52

Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /var/www/sda/0/b/infotrux/Shaarli-infotrux/index.php:52) in /var/www/sda/0/b/infotrux/Shaarli-infotrux/index.php on line 52
Shaarli-infotruxhttp://infotrux.free.fr/Shaarli-infotrux/Shared linksen-enhttp://infotrux.free.fr/Shaarli-infotrux/ Why Ubuntu is Making the 'Home' Folder Private in 21.04http://infotrux.free.fr/Shaarli-infotrux/?qeDwlghttps://www.omgubuntu.co.uk/2021/01/private-home-directory-in-ubuntu-21-04Fri, 15 Jan 2021 13:30:04 +0100 Ubuntu 21.04 (Permalink)]]> BionicBeaver/ReleaseNotes - Ubuntu Wikihttp://infotrux.free.fr/Shaarli-infotrux/?En9o4whttps://wiki.ubuntu.com/BionicBeaver/ReleaseNotesFri, 27 Apr 2018 15:39:19 +0200 18.04 ubuntu Permalink)]]> theme gtk3http://infotrux.free.fr/Shaarli-infotrux/?05eHiwhttps://www.gnome-look.org/p/1099856/#filesSun, 01 Oct 2017 17:03:55 +0200 custo linux ubuntu gnome Boston icon theme https://www.gnome-look.org/p/1012402/
Ozon icon theme https://github.com/ozonos/ozon-icon-theme/tree/master/Icons
(Permalink)]]>
Low Graphics Mode in Unity 7http://infotrux.free.fr/Shaarli-infotrux/?p0jspghttps://insights.ubuntu.com/2016/09/19/low-graphics-mode-in-unity-7/Tue, 20 Sep 2016 12:58:26 +0200 Ubuntu unity tips
   nano ~/.config/upstart/lowgfx.conf
   Paste this into it:

start on starting unity7
pre-start script
   initctl set-env -g UNITY_LOW_GFX_MODE=1
end script

   Log out and back in

If you want to stop using low graphics comment out the initctl line by placing a ‘#’ at the start of the line.

This won’t work in 16.10 Yakkety because we’re moving to systemd for the user session.  This will be fixed in due course.
(Permalink)]]>
Circumventing Ubuntu Snap confinementhttp://infotrux.free.fr/Shaarli-infotrux/?JEWsBghttps://mjg59.dreamwidth.org/42320.htmlFri, 22 Apr 2016 09:50:27 +0200 Ubuntu Snap secu linux Permalink)]]> Upgrade to Ubuntu 16.04 with Aptikhttp://infotrux.free.fr/Shaarli-infotrux/?MNYlUAhttp://www.teejeetech.in/2016/04/upgrade-to-ubuntu-1604-with-aptik.htmlThu, 21 Apr 2016 23:00:41 +0200 ubuntu aptik pkg upgrade backup Permalink)]]> Install and Configure Samba share in Ubuntuhttp://infotrux.free.fr/Shaarli-infotrux/?bMDN5whttp://www.unixmen.com/howto-install-and-configure-samba-share-in-ubuntu/Mon, 25 May 2015 12:09:33 +0200 samba linux ubuntu Permalink)]]> Fixubuntuhttp://infotrux.free.fr/Shaarli-infotrux/?pblOyAhttps://fixubuntu.com/Wed, 11 Mar 2015 15:50:30 +0100 ubuntu fix tweak
GS="/usr/bin/gsettings"
CCUL="com.canonical.Unity.lenses"

# Figure out the version of Ubuntu that you're running
V=$(/usr/bin/lsb_release -rs)
# The privacy problems started with v12.10, so earlier versions should do nothing

# Added check because 14.04.1 isn't a number
if [ $V == "14.04.1" ]; then
 $V=14.04
fi

# Minimum version check
MIN=`echo $V'>'12.10 | bc -l`

# Maximum version check
FIXED_VER=15.04
MAX=`echo $FIXED_VER'>'$V | bc -l`

if [[ $MIN -eq 0 || $MAX -eq 0 ]]; then
 echo "Good news! This version of Ubuntu is not known to invade your privacy."
 exit 0    # The script should exit if Ubuntu version is outside of range
fi

# Check if Canonical schema is present. Take first match, ignoring case.
SCHEMA="$($GS list-schemas | grep -i $CCUL | head -1)"
if [[ -z "$SCHEMA" ]]
 then
 printf "Error: could not find Canonical schema %s.\n" "$CCUL" 1>&2
 exit 1
else
 CCUL="$SCHEMA"
fi

# Turn off "Remote Search", so search terms in Dash aren't sent to the internet
$GS set "$CCUL" remote-content-search none

# If you're using a version earlier than v13.10, uninstall unity-lens-shopping
if [[ $V < 13.10 ]]; then
 sudo apt-get remove -y unity-lens-shopping

# If you're using a later version, disable remote scopes
else
 $GS set "$CCUL" disabled-scopes \
   "['more_suggestions-amazon.scope', 'more_suggestions-u1ms.scope',
   'more_suggestions-populartracks.scope', 'music-musicstore.scope',
   'more_suggestions-ebay.scope', 'more_suggestions-ubuntushop.scope',
   'more_suggestions-skimlinks.scope']"
fi;

# Block connections to Ubuntu's ad server, just in case
if ! grep -q "127.0.0.1 productsearch.ubuntu.com" /etc/hosts; then
 echo -e "\n127.0.0.1 productsearch.ubuntu.com" | sudo tee -a /etc/hosts >/dev/null
fi
# Editing /etc/hosts is OK, but adding an iptables rule seems to be
# a more elegant solution
sudo iptables -A OUTPUT -d 91.189.92.11 -j REJECT

echo "All done. Enjoy your privacy."
(Permalink)]]>
11 Useful Utilities To Supercharge Your Ubuntu Experiencehttp://infotrux.free.fr/Shaarli-infotrux/?cUAstQhttp://www.omgubuntu.co.uk/2014/11/useful-tools-for-ubuntu-do-you-use-themThu, 27 Nov 2014 08:45:10 +0100 Linux ubuntu Permalink)]]>