Jan D.

Jan D.

"The only real security that a man will have in this world is a reserve of knowledge, experience, and ability."

Negotiation strategy

1. HAVE A POSITION BEFORE YOU ENTER THE ROOM. Good negotiation starts with knowing what you want and putting it forth in conversation. This requires a substantial amount of preparation and asking the right questions through the discovery process, rather…

Enable ETH0 on VMWare Cent OS and install VMWare tools

#dhclient eth0 -v create the file and we place this text in it: [vmware-tools] name=VMware Tools for Red Hat Enterprise Linux $releasever – $basearch baseurl= enabled=1 gpgcheck=1 gpgkey= If we installed previously VMware tools via the local…

Create / Uncompress 7z files

Question: How do I uncompress a *.7z file ( 7zip file ) in UNIX / Linux ? Can you explain with a simple example? Answer: Use 7za command to unzip a 7z file ( 7zip file ) on Unix platform…

Virtualization Fedora 20

You can installin virt manager on Fedora FC20 with following commands: yum install virt-manager yum install libvirt Starting virt-manager will ask you to install additional 2 packages then you get lovely ISO selection screen and you can start installing whatever…

Create user with restricted access to own directory

Create a new user with it’s home directory set to the one you need him to have access to (this command must be run under sudo or in root shell): adduser –home /restricted/directory restricted_user This will create an user restricted_user, the directory /restricted/directory and then…

Fedora 20 change IP

[root@drash etc]# vi /etc/sysconfig/network-scripts/ifcfg-eth0 TYPE=Ethernet BOOTPROTO=dhcp DEFROUTE=yes IPV4_FAILURE_FATAL=no IPV6INIT=yes IPV6_AUTOCONF=yes IPV6_DEFROUTE=yes IPV6_FAILURE_FATAL=no NAME=eth0 UUID=e2647d40-8e94-4c17-a842-1d35d72775b1 ONBOOT=yes DNS1=208.67.220.220 DNS2=208.67.222.222 DNS3=213.46.172.36 HWADDR=00:1C:25:1C:D8:B3 PEERDNS=yes PEERROUTES=yes IPV6_PEERDNS=yes IPV6_PEERROUTES=yes IPV6_PRIVACY=no # this server’s IP address IPADDR=“192.168.1.116″ # subnet mask NETMASK=“255.255.255.0″ # default gateway GATEWAY=“192.168.1.1″ [root@drash etc]# systemctl…