-
Recent Posts
Recent Comments
Archives
- July 2020
- March 2020
- September 2019
- March 2019
- February 2018
- January 2018
- May 2017
- April 2017
- March 2017
- October 2016
- September 2016
- August 2016
- July 2016
- June 2016
- February 2016
- January 2016
- December 2015
- November 2015
- October 2015
- September 2015
- August 2015
- July 2015
- May 2015
- April 2015
- February 2015
- January 2015
- December 2014
- October 2014
- September 2014
- August 2014
- July 2014
- February 2014
- November 2013
- February 2013
- August 2012
- July 2012
- March 2012
- January 2012
- December 2011
- October 2011
- September 2011
- August 2011
- July 2011
- June 2011
- May 2011
- April 2011
- March 2011
- December 2010
- October 2010
- September 2010
- August 2010
- March 2010
- October 2009
- March 2007
- November 2001
Categories
- Apache
- API
- Apple-MacOS
- Artifical Intelligence
- CentOS
- CMS
- Database MySQL or MariaDB
- DNS server
- Dreambox
- Drupal
- Figure and facts
- Firewall
- Fly to the Cloud
- Fortinet
- Hard Disk
- Hardware
- Hosting Panel
- IoT (Internet of Things)
- JSON
- KC 7
- Lifestyle
- Linux
- Mail Server
- Misc
- Nas Synology
- Network
- Ngninx
- Plesk (parallels
- programming language
- Scripts
- Security
- SEO
- Shotcut video editor
- Software Development
- Storage
- Tools
- Ubuntu
- Uncategorized
- usb bootable disk
- usb bootable disk
- Useful command line
- WebServers
- Wifi Ubiquity
- Windows 10
- Windows 2003
- Windows 2008
- Windows 7
- Windows Server
- Wireless Network
Meta
-
Privacy & Cookies: This site uses cookies. By continuing to use this website, you agree to their use.
To find out more, including how to control cookies, see here: Cookie Policy
Category Archives: Linux
Linux Privacy distros
Linux kodachi https://www.digi77.com/linux-kodachi/ Subgraph OS https://subgraph.com/ Tails https://tails.boum.org/ Whonix https://www.whonix.org/ Tens
Posted in Linux
Leave a comment
CentOS hard disk and raid monitoring (supernas)
Run to determinate the raid hardware lspci | grep -i raid or /sbin/lspci /sbin/lspci -n
Posted in CentOS, Linux
Leave a comment
Ubuntu release server update
Ubuntu Servers (Recommended) If you installed from 14.04 or 12.04 originally you will need to remove LTS upgrade restrictions. Replace Prompt=lts with Prompt=normal: sudo pico /etc/update-manager/release-upgrades Install update-manager-core if it is not already installed: sudo apt-get install update-manager-core Launch the … Continue reading
Posted in Linux
Leave a comment
Linux filesystem
tree -C -L 1 / / ├── bin ├── boot ├── dev ├── disksafe ├── etc ├── home ├── lib ├── lib64 ├── lost+found ├── media ├── mnt ├── opt ├── proc ├── root ├── sbin ├── selinux ├── srv … Continue reading
Posted in Linux
Leave a comment
Recovery Mode Centos
fdisk -l fsck or e2fsck =>resultat de fdisk -l fsck -nf /dev/sda1 n -> dry-run: will not do any change (just checking) f -> force : sometimes it says clean but you can force a new check grub-install /dev/xvda, b, … Continue reading
Posted in Linux
Leave a comment
SSH login alerts
Create file login-notify.sh and put it under /etc/ssh inside of the file put the following code : #!/bin/sh # Change these two lines: sender=”sender-address@example.com” recepient=”notify-address@example.org” if [ “$PAM_TYPE” != “close_session” ]; then host=”`hostname`” subject=”SSH Login: $PAM_USER from $PAM_RHOST on $host” … Continue reading
Posted in Linux
Leave a comment
iptables scripts and examples
# Modify this file accordingly for your specific requirement. # 1. Delete all existing rules iptables -F # 2. Set default chain policies iptables -P INPUT DROP iptables -P FORWARD DROP iptables -P OUTPUT DROP # 3. Block a specific … Continue reading
Posted in Firewall, Linux
Leave a comment
Rsync examples
Useful command line synchronisation tool >> rsync -avzh –progress root@192.168.0.100:/remote/folder/site /local/folder/ >> rsync -avzh –progress local/folder root@192.168.0.100:/remote/folder/site/ over rsync error: some files/attrs were not transferred (see previous errors) (code 23) at main.c(1505) [receiver=3.0.6] check the ssh key changed on the remote … Continue reading
Posted in Linux
Leave a comment
Customize your shell and create your own bin and aliases commands
vi .bash_profile #Add Personal “bin” to the PATH Variable export PATH=$PATH:/Users/user/bin #Create & Use Aliases alias ll=’ls -lhaG’ export PS1=”\u@\h\w> ” export WMSJAVA_HOME=”/Library/WowzaStreamingEngine-4.6.0/java”
Posted in Linux
Leave a comment
Basic SysAdmin linux commands part 1
#1: top => Process Activity Command The top provides a real-time process activity. It displays by default the most CPU consuming tasks runnning and it refreshs every 3 seconds. There are some interactive commands very interesting d: Delay time can be … Continue reading
Posted in Linux
Leave a comment