Ubuntu 16.04 Postinstall

Enable root:
[bash]
sudo su
sudo passwd root
su -l
[/bash]

disable IPv6:
[bash]
vi /etc/sysctl.d/01-disable-ipv6.conf
[/bash]
[bash]
net.ipv6.conf.all.disable_ipv6 = 1
[/bash]

remove Shopping lense:
[bash]
apt-get remove unity-lens-shopping
gsettings set com.canonical.Unity.Lenses 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‘]"
[/bash]

additional deb’s:
[bash]
apt-get install ubuntu-restricted-extras ffmpeg gxine libdvdread4 icedax tagtool libdvd-pkg easytag id3tool lame libxine2-ffmpeg nautilus-script-audio-convert libmad0 mpg321 libavcodec-extra gstreamer1.0-libav

dpkg-reconfigure libdvd-pkg
[/bash]

disable Guest account:
[bash]
apt-get install gksu
gksu gedit /etc/lightdm/lightdm.conf

[SeatDefaults]
greeter-session=unity-greeter
allow-guest=false

/etc/init.d/lightdm restart
[/bash]

Install lnav Logging-Tool:

[bash]
apt-get install lnav
[/bash]

Unity Tweak Tools:
[bash]
apt-get install unity-tweak-tool
[/bash]

One-click minimize:
[bash]
apt-get install compizconfig-settings-manager
[/bash]
CCSM“ > Then go to Unity plugin > Tick ‚Minimize Single Window Applications‘ feature

http://www.noobslab.com/2016/04/important-20-tweaksthings-to-do-after.html

un-zip:
[bash]
apt-get install p7zip-rar p7zip-full unace unrar zip unzip sharutils rar uudeview mpack arj cabextract file-roller
[/bash]

MiniTube:
[bash]
apt-get install libqt5widgets5 libqt5network5 libqt5script5 libqt5sql5 libqt5sql5-sqlite libqt5dbus5 phonon4qt5 libphonon4qt5-4 phonon4qt5-backend-gstreamer
wget -O minitube64.deb http://flavio.tordini.org/files/minitube/minitube64.deb
dpkg -i minitube64.deb
[/bash]

Veröffentlicht unter bash, Linux | Schreib einen Kommentar

Windows Tweaks

MPEnablePlus
http://ulrichhanke.de/MicrosoftTipps/Win10Adware-Killer.html

http://ulrichhanke.de

Veröffentlicht unter Windows | Schreib einen Kommentar

Windows integrierte Apps deinstallieren

Liste der „Apps“
[bash]
*3DBuilder*
*BingFinance*
*BingFoodAndDrink*
*BingHealthAndFitness*
*BingNews*
*BingSports*
*BingWeather*
*MicrosoftEdge*
*Microsoft.People*
*MicrosoftOfficeHub*
*MicrosoftSolitaireCollection*
*WindowsAlarms
*Windows.Photos*
*WindowsCamera*
*WindowsMaps*
*WindowsPhone*
*WindowsSoundRecorder*
*XboxApp*
*ZuneMusic*
*ZuneVideo*
*windowscommunicationsapps*
*XboxApp*
*Weather*
*Office*

[/bash]

PowerShell als Administrator ausführen und hiermit deinstallieren:
[bash]
get-appxpackage -Name *XboxApp* | Remove-AppxPackage
[/bash]

Veröffentlicht unter Windows | Schreib einen Kommentar

„One Drive“ in Windows 10 entfernen

[bash]
@echo off
cls

set x86="%SYSTEMROOT%\System32\OneDriveSetup.exe"
set x64="%SYSTEMROOT%\SysWOW64\OneDriveSetup.exe"

echo OneDrive Prozess beenden
echo.
taskkill /f /im OneDrive.exe > NUL 2>&1
ping 127.0.0.1 -n 5 > NUL 2>&1

echo OneDrive deinstallieren
echo.
if exist %x64% (
%x64% /uninstall
) else (
%x86% /uninstall
)
ping 127.0.0.1 -n 5 > NUL 2>&1

echo OneDrive Überreste entfernen
echo.
rd "%USERPROFILE%\OneDrive" /Q /S > NUL 2>&1
rd "C:\OneDriveTemp" /Q /S > NUL 2>&1
rd "%LOCALAPPDATA%\Microsoft\OneDrive" /Q /S > NUL 2>&1
rd "%PROGRAMDATA%\Microsoft OneDrive" /Q /S > NUL 2>&1

echo OneDrive im Datei Explorer entfernen
echo.
REG DELETE "HKEY_CLASSES_ROOT\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}" /f > NUL 2>&1
REG DELETE "HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}" /f > NUL 2>&1
REG DELETE "HKEY_CURRENT_USER\Software\Classes\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}\ShellFolder" /f > NUL 2>&1
REG DELETE "HKEY_CURRENT_USER\Software\Classes\Wow6432Node\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}\ShellFolder" /f > NUL 2>&1

pause
[/bash]

Veröffentlicht unter Windows | Schreib einen Kommentar

Drupal 7 hide h2 in h1

[bash]
<h2>
<a href="/node/5"></a>
</h2>
<span class="rdf-meta element-hidden" content="Arbeiten" property="dc:title"></span>
[/bash]

Veröffentlicht unter Drupal | Schreib einen Kommentar

PowerShell Ausgabe filtern

[bash]

netstat -an | findstr :25

[/bash]

Gibt nur offene Verbindungen auf Port 25 aus.

Veröffentlicht unter PowerShell, Windows | Schreib einen Kommentar