Lintel Technologies

Lintel Technologies If you can dream it, we will deliver it. Technology becomes generic when passion, motivation and imagination are not invested in its deployment.

Lintel transforms the generic into an interesting human narrative by making these three elements into our process and methodology. This ensures that the adoption of our technology solutions happens in a way that embraces cultural specificities, individual context and local sensibilities.

https://howto.lintel.in/how-to-install-wxpython/
01/06/2021

https://howto.lintel.in/how-to-install-wxpython/

In this post we will go over the topic of easy way to install wxpython. The following command will install wxpython easily in python3. pip install wxpython Python 2 Older versions of wxpython can be installed by downloading binaries (for windows) from sourceforge . The binaries are available for bot...

https://howto.lintel.in/how-to-import-and-export-databases-in-mysql/
01/06/2021

https://howto.lintel.in/how-to-import-and-export-databases-in-mysql/

MySQL is an open-source relational database management system. Its name is a combination of “My”, the name of co-founder Michael Widenius’s daughter, and “SQL”, the abbreviation for Structured Query Language. A relational database organizes data into one or more data tables in which data t...

https://howto.lintel.in/how-to-find-out-cpu-make-and-model-in-linux/
20/05/2021

https://howto.lintel.in/how-to-find-out-cpu-make-and-model-in-linux/

Use the following simple command to find out make and model of CPU/Processor – cat /proc/cpuinfo ┌──(kali㉿kali)-[~]└─$ cat /proc/cpuinfoprocessor : 0vendor_id : GenuineIntelcpu family : 6model : 94model name : Intel(R) Core(TM) i7-6700HQ CPU @ 2.60GHzstepping : 3cpu MHz : 2591.996cache...

https://howto.lintel.in/ideas-are-worthless/
18/05/2021

https://howto.lintel.in/ideas-are-worthless/

When building new products or services it’s better to share them with potential customers as early as possible. This will help close the feedback loop. Which is precious when a business is in early phase and haven’t burnt too much cash on the new product. Start ups operating in stealth mode, shr...

The pdsh parallel shell tool allows you and lets you run a shell command across multiple nodes in a cluster. This is a h...
03/04/2020

The pdsh parallel shell tool allows you and lets you run a shell command across multiple nodes in a cluster. This is a high performance, parallel pdsh shell remote shell utility for admins. Chaos Pdsh is a multithreaded remote shell client which executes commands on multiple remote hosts in parallel. A parallel shell permits your clusters Linux Ubuntu RedHat to run the same similar command on many designated hosts or nodes within the hadoop cluster. [ 496 more words ]

The pdsh parallel shell tool allows you and lets you run a shell command across multiple nodes in a cluster. This is a high performance, parallel pdsh shell remote shell utility for admins. Chaos Pdsh is a multithreaded remote shell client which executes commands on multiple remote hosts in parallel...

AWS Database Migration Service (DMS) helps you migrate databases to AWS quickly and securely. The source database remain...
28/02/2020

AWS Database Migration Service (DMS) helps you migrate databases to AWS quickly and securely. The source database remains fully operational during the migration, minimizing downtime to applications that rely on the database. The AWS Database Migration Service can migrate your data to and from most widely used commercial and open-source databases. The Database Migration Service is a data mover. It creates only the structures required to migrate your data, (this is for performance reasons mainly.) Additionally, it doesn't migrate secondary indexes, default values, procedures, triggers, auto increment columns etc. [ 94 more words ]

The Database Migration Service is a data mover. It creates only the structures required to migrate your data, (this is for performance reasons mainly.)

Ansible Tower (formerly ‘AWX’) is a web-based solution that makes Ansible even more easy to use for IT teams of all kind...
30/01/2020

Ansible Tower (formerly ‘AWX’) is a web-based solution that makes Ansible even more easy to use for IT teams of all kinds. It’s designed to be the hub for all of your automation tasks. Tower allows you to control access to who can access what, even allowing sharing of SSH credentials without someone being able to transfer those credentials. Inventory can be graphically managed or synced with a wide variety of cloud sources. [ 169 more words ]

Ansible Tower (formerly ‘AWX’) is a web-based solution that makes Ansible even more easy to use for IT teams of all kinds. It’s designed to be the hub for all of your automation tasks. Tower allows you to control access to who can access what, even allowing sharing of SSH credentials without s...

A SOCKS server is a general purpose proxy server that establishes a TCP connection to another server on behalf of a clie...
24/12/2019

A SOCKS server is a general purpose proxy server that establishes a TCP connection to another server on behalf of a client, then routes all the traffic back and forth between the client and the server. It works for any kind of network protocol on any port. SOCKS Version 5 adds additional support for security and UDP. Use of SOCKS is as a circumvention tool, allowing traffic to bypass Internet filtering to access content otherwise blocked, e.g., by governments, workplaces, schools, and country-specific web services… [ 288 more words ]

A SOCKS server is a general purpose proxy server that establishes a TCP connection to another server on behalf of a client, then routes all the traffic back and forth between the client and the server. It works for any kind of network protocol on any port. SOCKS Version 5 adds additional support for...

This tip is for people who have ever hosed important files by using > when they meant to use >>. Add the following line ...
05/12/2019

This tip is for people who have ever hosed important files by using > when they meant to use >>. Add the following line to .bashrc: ```set -o noclobber``` The noclobber option prevents you from overwriting existing files with the > operator. If the redirection operator is ‘>’, and the noclobber option to the set builtin has been enabled, the redirection will fail if the file whose name results from the expansion of word exists and is a regular file. [ 149 more words ]

This tip is for people who have ever hosed important files by using > when they meant to use >>. Add the following line to .bashrc: set -o noclobber The noclobber option prevents you from overwriting existing files with the > operator. If the redirection operator is ‘>’, and the noclobber option...

27/11/2019

What is Manhole? Manhole is an in-process service, that will accept UNIX domain socket connections and present the stack traces for all threads and an interactive prompt. Using it we can access and modify objects or definition in the running application, like change or add the method in any class, change the definition of any method of class or module. [ 249 more words ]

How to add manhole in twisted application How to implemented manhole in twisted application, monkey patch the content of running twisted application.

a port scanner is an application designed to probe a server or host for open ports. Such an application may be used by a...
18/11/2019

a port scanner is an application designed to probe a server or host for open ports. Such an application may be used by administrators to verify the security policies of their networks and by attackers to identify network services running on a host and exploit vulnerabilities. port-scanner.py #!/usr/bin/env python2 from socket import * if __name__ == '__main__': target = raw_input('Enter host to scan: ') targetIP = gethostbyname(target) print 'Starting scan on host ', targetIP reserved ports for i in range(20, 1025): s = socket(AF_INET, SOCK_STREAM) result = s.connect_ex((targetIP, i)) if(result == 0) : print 'Port %d: OPEN' % (i,) s.close() Example
https://howto.lintel.in/simple-port-scanner-python/

a port scanner is an application designed to probe a server or host for open ports. Such an application may be used by administrators to verify the security policies of their networks and by attackers to identify network services running on a host and exploit vulnerabilities. port-scanner.py [crayon...

Address

Level 7, Maximus Towes 2A, Mindspace
Hitech City
500081

Telephone

+919898396969

Alerts

Be the first to know and let us send you an email when Lintel Technologies posts news and promotions. Your email address will not be used for any other purpose, and you can unsubscribe at any time.

Contact The Business

Send a message to Lintel Technologies:

Share