
thelinuxelf.wordpress.com
LinuxElf – Linux e OpenSource para todos! | Just another WordPress.com siteJust another WordPress.com site
http://thelinuxelf.wordpress.com/
Just another WordPress.com site
http://thelinuxelf.wordpress.com/
TODAY'S RATING
>1,000,000
Date Range
HIGHEST TRAFFIC ON
Sunday
LOAD TIME
5.3 seconds
16x16
32x32
PAGES IN
THIS WEBSITE
5
SSL
EXTERNAL LINKS
9
SITE IP
192.0.78.12
LOAD TIME
5.297 sec
SCORE
6.2
LinuxElf – Linux e OpenSource para todos! | Just another WordPress.com site | thelinuxelf.wordpress.com Reviews
https://thelinuxelf.wordpress.com
Just another WordPress.com site
About | LinuxElf – Linux e OpenSource para todos!
https://thelinuxelf.wordpress.com/about
LinuxElf – Linux e OpenSource para todos! Just another WordPress.com site. This is an example of a WordPress page, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many pages like this one or sub-pages as you like and manage all of your content inside of WordPress. Deixe uma resposta Cancelar resposta. Insira seu comentário aqui. Preencha os seus dados abaixo ou clique em um ícone para log in:. Nunca tornar endereço público).
O início | LinuxElf – Linux e OpenSource para todos!
https://thelinuxelf.wordpress.com/2011/07/23/o-inicio
LinuxElf – Linux e OpenSource para todos! Just another WordPress.com site. Um pouco sobre AWK[Parte 1] →. Julho 23, 2011. Este primeiro post é só para contar um pouco sobre o porque do blog, quem eu sou, do que vamos falar aqui, como falar aqui, porque falar aqui e coisas do tipo. Curso Bacharelado em Ciência da Computação na Universidade Federal do Paraná (acho que não preciso dizer que gosto bastante da área acadêmica certo? Logo logo teremos o primeiro post tecnico aqui no blog! O porque de tudo.
marcobenatto | LinuxElf – Linux e OpenSource para todos!
https://thelinuxelf.wordpress.com/author/marcobenatto
LinuxElf – Linux e OpenSource para todos! Just another WordPress.com site. Arquivo do autor: marcobenatto. Um pouco sobre AWK[Parte 1]. Julho 25, 2011. Olá pessoal, vamos lá com um primeiro post técnico do blog! Resolvi começar com AWK por julga-lo útil, interessante e pratico. Quantos de vocês já tiveram que interpretar (vulgo “parsear”) um arquivo com algum formato fixo, aonde os campos são … Continuar lendo →. Julho 23, 2011. O porque de tudo. Um pouco sobre AWK[Parte 1].
Um pouco sobre AWK[Parte 1] | LinuxElf – Linux e OpenSource para todos!
https://thelinuxelf.wordpress.com/2011/07/25/um-pouco-sobre-awkparte-1
LinuxElf – Linux e OpenSource para todos! Just another WordPress.com site. Um pouco sobre AWK[Parte 1]. Julho 25, 2011. Vamos lá com um primeiro post técnico do blog! Resolvi começar com AWK por julga-lo útil, interessante e pratico. Quantos de vocês já tiveram que interpretar (vulgo “parsear”) um arquivo com algum formato fixo, aonde os campos são definidos por separados como: ‘,’, ‘ ’, ‘.’, ‘/’, etc…? Acho que quase todo mundo não? Então, o AWK é uma ferramenta bem pratica e útil pra esses casos! O awk...
julho | 2011 | LinuxElf – Linux e OpenSource para todos!
https://thelinuxelf.wordpress.com/2011/07
LinuxElf – Linux e OpenSource para todos! Just another WordPress.com site. Arquivo do mês: julho 2011. Um pouco sobre AWK[Parte 1]. Julho 25, 2011. Olá pessoal, vamos lá com um primeiro post técnico do blog! Resolvi começar com AWK por julga-lo útil, interessante e pratico. Quantos de vocês já tiveram que interpretar (vulgo “parsear”) um arquivo com algum formato fixo, aonde os campos são … Continuar lendo →. Julho 23, 2011. O porque de tudo. Um pouco sobre AWK[Parte 1]. Blog no WordPress.com.
TOTAL PAGES IN THIS WEBSITE
5
Sparc86's Blog | Thoughts, bits and bytes… | Page 2
https://sparc86.wordpress.com/page/2
Thoughts, bits and bytes…. Structured Data in C programming. I was learning about Structured Data and I have found some plenty of weird code. Here is the simplest code I have found, so everyone can understand the concepts. Include struct person { char *name; int age; }; int main() { struct person p; p.name = John Smith; p.age = 25; printf(%s,p.name); printf(%d,p.age); return 0; }. Additionally, I have wrote this more elaborated code. Based on the ebook Learning GNU C from Ciarán O'Riordan):. 1 By every 5...
Python simple HTTP server | Sparc86's Blog
https://sparc86.wordpress.com/2012/11/17/python-simple-http-server
Thoughts, bits and bytes…. Python simple HTTP server. One of my friends presented this nice tool. Very useful if you want to share a folder but is not interested in running a full HTTP server:. Python -m SimpleHTTPServer 80. Where 80 is the http port and may be changed for any other port you prefer). November 17, 2012. Leave a Reply Cancel reply. Enter your comment here. Fill in your details below or click an icon to log in:. Address never made public). Notify me of new comments via email.
Removing specific occurrences of files | Sparc86's Blog
https://sparc86.wordpress.com/2012/03/20/removing-specific-occurrences-of-files
Thoughts, bits and bytes…. Removing specific occurrences of files. Let’s say we have a Linux file server (samba) and the users insist in keep adding mp3 files into it. With the following command (and I suggest you adding the script to your crontab) we can remove all the occurrences of mp3/MP3 files everyday without doing it manually. Find /home -type f -iname *.mp3 -exec rm -fv {} ;. March 20, 2012. Leave a Reply Cancel reply. Enter your comment here. Fill in your details below or click an icon to log in:.
Checking if there is unauthorized DHCP servers in a LAN | Sparc86's Blog
https://sparc86.wordpress.com/2012/08/10/checking-if-there-is-unauthorized-dhcp-servers-in-a-lan
Thoughts, bits and bytes…. Checking if there is unauthorized DHCP servers in a LAN. I have found a very nice tool to probe for unauthorized DHCP servers in a network. In Debian, you can use aptitude or apt-get to install it. I hope it will be useful for more people. Apt-get install dhcp probe #dhcp probe -f -o /home/user/caps/dhcp.pcap eth0 note: starting, version 1.3.0 warn: received unexpected response on interface eth0 from BootP/DHCP server with IP source 192.168.0.1 (ether sr...August 10, 2012.
adding standard samba password to a user list | Sparc86's Blog
https://sparc86.wordpress.com/2012/03/19/adding-standard-samba-password-to-a-user-list
Thoughts, bits and bytes…. Adding standard samba password to a user list. For f in $( cat /root/users.txt ); do echo -ne pass npass n smbpasswd -a -s $f; done. Of course, alternatively, I could use “ls /home” instead of “cat /root/users.txt”. March 19, 2012. 2 responses to “adding standard samba password to a user list”. March 12th, 2013 at 22:10. Someone in my Myspace group shared this website. Tweeting this to my followers! Great blog and terrific style and. March 20th, 2013 at 01:08. Follow “Spa...
Rotational backup shell script | Sparc86's Blog
https://sparc86.wordpress.com/2012/05/27/rotational-backup-shell-script
Thoughts, bits and bytes…. Rotational backup shell script. So I wrote this shell script for a client which needed a simple solution for daily backups. It will:. 1 Check if the USB HDD is mounted, if it is not, it will mount it. 2 It will start writing it is own log file, will check for files older than 60 days, if it finds, it will delete it. Therefore the backups will never exceed the space in the external HDD (500G HDD). May 27, 2012. Leave a Reply Cancel reply. Enter your comment here. You are comment...
automatically adding the unix users to the samba smb.conf shares | Sparc86's Blog
https://sparc86.wordpress.com/2012/03/20/automatically-adding-the-unix-users-to-the-samba-smb-conf-shares
Thoughts, bits and bytes…. Automatically adding the unix users to the samba smb.conf shares. With the following script we can automatically add shares to the smb.conf (/etc/samba/smb.conf) based on the actual unix users:. March 20, 2012. 1 responses to “automatically adding the unix users to the samba smb.conf shares”. April 10th, 2013 at 03:54. Today, while I was at work, my cousin stole my iPad and tested to see if it can survive. A twenty five foot drop, just so she can be a youtube sensation. System&...
samba auto mounting user folders according to groups | Sparc86's Blog
https://sparc86.wordpress.com/2012/07/23/samba-auto-mounting-user-folders-according-to-groups
Thoughts, bits and bytes…. Samba auto mounting user folders according to groups. So, in my workplace, we were building a file server and the directory distribution would work according to the groups the user is part of. So we built shell scripts which would automatically mount the folders for the user. To achieve this, we built the directory tree like this:. Srv/files/groups/infrastructure,HR,IT,marketing (here is where all the files will actually be placed, according to the groups). D /srv/files/users/$...
TOTAL LINKS TO THIS WEBSITE
9
The Linux Daily | Tutorials, Guides, Tips, and Tricks from Everyday Experiences
Tutorials, Guides, Tips, and Tricks from Everyday Experiences. Subscribers = 312; */. Posted by Derek@TheDailyLinux in Programming. C Function to Validate ISO 8601 Date Formats Using ‘strptime’. Here’s a demonstration of how to use. And a list of format strings to validate, for example, a supplied ISO 8601 date in C or C . You can play with the code below over at https:/ ideone.com/4Em3v1. This is also a good demonstration for how to easily loop through all elements in an array of undefined size in C.
ANS Group
The Linux Doctor
Making house calls to solve your Linux needs. Are you a Windows user who wants more out of your computing experience and has been curious about Linux but don't know who to trust to offer support? Do you already have Linux on your PC but need some additional troubleshooting expertise? Are you a novice Linux user who needs some technical assistance from time to time? What exactly is Linux? Linux is an Operating System (i.e., the software which runs your PC) which is a free. And can save you a lot of money.
The Linux Dudes
This is the new home of The Linux Dudes. For information concerning this. Linux Technology and Support Site. The Linux Dudes: thedudes@thelinuxdudes.com.
LinuxElf – Linux e OpenSource para todos! | Just another WordPress.com site
LinuxElf – Linux e OpenSource para todos! Just another WordPress.com site. Um pouco sobre AWK[Parte 1]. Julho 25, 2011. Vamos lá com um primeiro post técnico do blog! Resolvi começar com AWK por julga-lo útil, interessante e pratico. Quantos de vocês já tiveram que interpretar (vulgo “parsear”) um arquivo com algum formato fixo, aonde os campos são definidos por separados como: ‘,’, ‘ ’, ‘.’, ‘/’, etc…? Acho que quase todo mundo não? Então, o AWK é uma ferramenta bem pratica e útil pra esses casos! O awk...
The Linux Experiment
Taking a look at some Linux e-mail clients. July 12th, 2015. Many people now use a browser based solution, like Gmail, for all of their e-mail needs however there are still plenty of reasons why someone might want to use a local e-mail client as well. In this post I’m going to take a look at some of the graphical e-mail client options available on Linux. Claws Mail Project Website. Geary is a relative newcomer and has been getting quite a bit of attention as it is included as the default e-mail client in...
TheLinuxExpert.com
Buydomains.com
Installations And Tutorials | Linux Administrator guide | Windows| Mac
Remmina Unable to connect to RDP server on Ubuntu. August 12, 2015. If you could not connect remote server by Remmina tool on Ubuntu server just following the steps,. Install JDK 7 or JDK 8 by Shell Script on Linux. August 12, 2015. We have already discussed on previous post how to install JDK 7 and JDK 8 version on Linux, the following shell script to install by shell script with choose options JDK 7 or JDK 8. How to Install JBOSS Server 7.1 by Shell Script on Linux. August 12, 2015. August 10, 2015.
Linux Dedicated Servers, Michigan Web Hosting | The Linux Fix - We Are Your Open Source
Powered web hosting on our rock-solid core network. Our Gen2 high-performance VPS servers based on Linux KVM. Enterprise-class servers custom built for optimum performance. LinuxPro Web Hosting Plans. Linux Virtual Private Servers. Accessed on Friday August 14, 2015.