uncleflo

profile picture

Some cool dude. Higher order of decision making. Absolute.

Registered since September 28th, 2017

Has a total of 4246 bookmarks.

Showing top Tags within 15 bookmarks

howto   information   development   guide   reference   administration   design   website   software   solution   service   product   online   business   uk   tool   company   linux   code   server   system   application   web   list   video   marine   create   data   experience   description   tutorial   explanation   technology   build   blog   article   learn   world   project   boat   download   windows   security   lookup   free   performance   javascript   technical   network   control   beautiful   support   london   tools   course   file   research   purchase   library   programming   image   youtube   example   php   construction   html   opensource   quality   install   community   computer   profile   feature   power   browser   music   platform   mobile   work   user   process   database   share   manage   hardware   professional   buy   industry   internet   dance   advice   installation   developer   3d   search   camera   access   customer   material   travel   test   standard   review   documentation   css   money   engineering   webdesign   engine   develop   device   photography   digital   api   speed   source   program   management   phone   discussion   question   event   client   story   simple   water   marketing   app   content   yacht   setup   package   fast   idea   interface   account   communication   cheap   compare   script   study   market   easy   live   google   resource   operation   startup   monitor   training  


Tag selected: shell.

Clear all

Showing 15 results.

Looking up shell tag. Showing 15 results. Clear

Running MySQL *.sql files in PHP Ask Question

https://stackoverflow.com/questions/4027769/running-mysql-sql-files-in-php

Saved by uncleflo on February 15th, 2018.

I have two *.sql files that I use when creating a new web site database. The first file creates all the tables. The second file populates some default records. I would like to execute these files from PHP. I also use the Zend_Framework, if that will help accomplish this? Answer: This question comes up from time to time. There's no good solution for running a .sql script directly from PHP. There are edge cases where statements common in a .sql script can't be executed as SQL statements. For example, the mysql tool has builtin commands that are not recognized by the MySQL Server, e.g. CONNECT, USE, and DELIMITER.

question stackoverflow mysql php execute solution answer tool command statement config script shell linux howto good technical development administration security website webdev


Which characters need to be escaped in Bash? How do we know it?

https://stackoverflow.com/questions/15783701/which-characters-need-to-be-escaped-in-bash-how-do-we-know-it

Saved by uncleflo on February 7th, 2018.

Is there any comprehensive list of characters that need to be escaped in Bash? Can it be checked just with sed? In particular, I was checking whether % needs to be escaped or not. I tried this and worked fine, without escaping %. Does it mean % does not need to be escaped? Was this a good way to check the necessity? And more general: are they the same characters to escape in shell and bash?

question stackoverflow howto technical development list character escape escaping security bash shell script command commandline administration code maintenance hacking


DiskStation Manager: Active Backup for Server

https://www.synology.com/en-global/knowledgebase/DSM/help/ActiveBackup/activebackup

Saved by uncleflo on December 27th, 2017.

Active Backup for Server is a package specially designed to centralize data backup for Windows and Linux servers. It provides a unified monitoring interface and a consistent setup experience for all your backup tasks from different sources. What's more, source servers do not require additional installation of backup agents.

backup synology package windows linux administration active ssh nas server nas server rsync smb source ssh key shell save compression versioning rotation task schedule howto diskstation station disk online personal setting lookup information guide experience monitor restore realtime history management administer


How to Read a File Line by Line in a Shell Script

http://www.bashguru.com/2010/05/how-to-read-file-line-by-line-in-shell.html

Saved by uncleflo on January 27th, 2017.

There are many ways to handle any task on a Unix platform, but some techniques that are used to process a file waste a lot of CPU time. Most of the wasted time is spent in unnecessary variable assignment and continuously opening and closing the same file over and over. Using a pipe also has a negative impact on the timing. In this article I will explain various techniques for parsing a file line by line. Some techniques are very fast and some make you wait for half a day. The techniques used in this article are measurable, and I tested each technique with time command so that you can see which techniques suits your needs.

read shell file script guru bash linux performance reference administration development technique compare measure howto


Heiner's SHELLdorado

http://www.shelldorado.com/

Saved by uncleflo on November 3rd, 2016.

SHELLdorado - your UNIX shell scripting resource

shell guide tips howto expert lookup website resource development administration sh ksh bash script tutorial reference list server linux unix


Shell Scripting Tutorial - Quick Reference

http://www.shellscript.sh/quickref.html

Saved by uncleflo on October 28th, 2016.

A Bourne Shell Programming / Scripting Tutorial for learning about using the Unix shell. Learn Linux / Unix shell scripting by example along with the theory. I'll have you mastering Unix shell scripting in no time.

shell script scripting ssh ksh bash sh reference quick howto lookup master linux aix unix command terminal beginner simple list


Advanced Bash-Scripting Guide

http://www.tldp.org/LDP/abs/html/index.html

Saved by uncleflo on October 28th, 2016.

This tutorial assumes no previous knowledge of scripting or programming, yet progresses rapidly toward an intermediate/advanced level of instruction... all the while sneaking in little nuggets of UNIX® wisdom and lore. It serves as a textbook, a manual for self-study, and as a reference and source of knowledge on shell scripting techniques. The exercises and heavily-commented examples invite active reader participation, under the premise that the only way to really learn scripting is to write scripts. This book is suitable for classroom use as a general introduction to programming concepts. This document is herewith granted to the Public Domain. No copyright!

server administration advanced principle instruction linux bash ksh sh script execute terminal complex howto guide program example technique shell textbook rapid progression source reference


GNU Parallel - GNU Project - Free Software Foundation

http://www.gnu.org/software/parallel/

Saved by uncleflo on August 9th, 2014.

GNU Parallel For people who live life in the parallel lane. GNU parallel is a shell tool for executing jobs in parallel using one or more computers. A job can be a single command or a small script that has to be run for each of the lines in the input. The typical input is a list of files, a list of hosts, a list of users, a list of URLs, or a list of tables. A job can also be a command that reads from a pipe. GNU parallel can then split the input and pipe it into commands in parallel.

linux parallel unix tools shell gnu job software foundation project free table command pipe input computer tool fast process


None

http://tldp.org/LDP/Bash-Beginners-Guide/html/sect_02_01.html

Saved by uncleflo on September 15th, 2013.

A shell script is a sequence of commands for which you have a repeated use. This sequence is typically executed by entering the name of the script on the command line. Alternatively, you can use scripts to automate tasks using the cron facility. Another use for scripts is in the UNIX boot and shutdown procedure, where operation of daemons and services are defined in init scripts. To create a shell script, open a new empty file in your editor. Any text editor will do: vim, emacs, gedit, dtpad et cetera are all valid. You might want to chose a more advanced editor like vim or emacs, however, because these can be configured to recognize shell and Bash syntax and can be a great help in preventing those errors that beginners frequently make, such as forgetting brackets and semi-colons.

guide shell scripting development tutorial init linux script howto editor programming ubuntu bash unix


HowTos/Network/SecuringSSH - CentOS Wiki

http://wiki.centos.org/HowTos/Network/SecuringSSH#head-3579222198adaf43a3ecbdc438ebce74da40d8ec

Saved by uncleflo on September 12th, 2013.

OpenSSH (or Secure SHell) has become a de facto standard for remote access replacing the telnet protocol. SSH has made protocols such as telnet redundant due, in most part, to the fact that the connection is encrypted and passwords are no longer sent in plain text for all to see. However, a default installation of ssh isn't perfect, and when running an ssh server there are a few simple steps that can dramatically harden an installation.

open ssh sshd port security network howto wiki standard access protocol telnet redundant server password authentication public private key shell secure username root login centos


dd - writing zeros - general question

http://www.linuxquestions.org/questions/linux-software-2/dd-writing-zeros-general-question-682174/

Saved by uncleflo on August 23rd, 2013.

Can't figure out why using dd to write zeros to a hard drive is so slow. Yesterday, I prepped a hard drive for a friend and did the standard command: dd if=/dev/zero of=/dev/sda The machine I used has a Core 2 Duo 2.4 Ghz cpu, 2 Gigs of DDR2 800 RAM, a new Intel mobo, and a Western Digital 250 gig. SATA drive with 16 meg. cache. The result was 30,482 seconds (approx. 8.5 hrs.) to write zeros to the entire 500 Gig. drive, at an average rate of 16.4 MB/sec.

dd linux zero write overwrite wipe hard disk drive command shell execute bash windows speed fast


GitHub pooler / cpuminer

https://github.com/pooler/cpuminer

Saved by uncleflo on May 10th, 2013.

This is a multi-threaded CPU miner for Litecoin and Bitcoin, fork of Jeff Garzik's reference cpuminer. Basic Windows build instructions, using MinGW. This DOS command, whilst registered with https://lc.ozcoin.net/, works for FlorianM: "minerd -o http://newlc.ozco.in:9332 -u uncleflo.desktop -p sfd6s9qdsg6d5s -t8"

mining shell instructions development c mingw windows code linux litecoin reference optimized performance thread command bitcoin github 64bit


Command-line CD-ROM burning in Linux

http://sharkysoft.com/tutorials/linuxtips/cdcommands/

Saved by uncleflo on September 6th, 2011.

Command-line CD-ROM burning in Linux, by Charlton Rose. You don't need fancy programs to burn CDs in Linux. You can do it all from the command line. Here are some quick and dirty patterns to get you started.

linux ubuntu cdrom burn charlton rose program software command line quick shell information guide


Ubuntu Linux: How do I install .deb packages?

http://www.cyberciti.biz/faq/ubuntu-linux-how-do-i-install-deb-packages/

Saved by uncleflo on September 6th, 2011.

I am a new Ubuntu Linux use. I need to install a package called package.deb. I know I can use Synaptic package management to install packages from CD or Internet. But I want to install this special .deb file. So how can I install package? You need to use dpkg package manager from shell/command prompt. dpkg is a tool to install, build, remove and manage packages. dpkg itself is controlled entirely via command line parameters. For example -i use to install .deb file. How do I install .deb file? To install package called package.deb type the following command:

ubuntu linux install deb package howto shell bash debian files newbie


Installing .deb package through the terminal - Ubuntu Forums

http://ubuntuforums.org/showthread.php?t=390307

Saved by uncleflo on March 9th, 2011.

How do I install a .deb package through the terminal because I can't use the GDebi Package installer because I get an error of corruption or permission. The package is on the my desktop and I would like to install it to /home/thieflock/appearance/kiba dock so what would that command line be? - If there is a problem installing with Gdebi, maybe you should try downloading it again. If you want to try installing it from the terminal, try sudo dpkg -i <package name>

ubuntu solution terminal shell install package file deb linux guide


No further bookmarks found.