Wednesday, April 27, 2011

Transferring files with OpenSSH

OpenSSH is a well known program which allows you to login to a host remotely, and run commands etc. It also comes with a simple file transfer system which can be used to transfer files securely. scp is the command to use. You can either transfer files to the remote machine from your local one, or vice versa.
Usage is as simple as:
scp file-to-send user@host:/path/to/place/file
For example to copy the password file from your local machine (bennevis to a remote server called 'earth' you could use:
steve@bennevis:~$ scp /etc/passwd steve@earth:
steve@earth's password:
passwd               100% |*****************************|   918       00:00
As no destination directory was specified the file will be transferred to your home directory upon the remote machine.
If you wish to transfer a lot of files you can copy a directory recurisvely, with the -r flag.

When it comes to sending files to and from you Unix machine from a Windows desktop you can use the excellent open source program WinSCP which presents a drag and drop interface to remote file systems - allowing you to drag and drop files with ease.
With OpenSSh installed you have no reason to be running insecure systems such as FTP to copy files to and from your Unix servers.
================

Using scp to transfer files in Linux

Tech Computer Center logo
The scp command copies files to or from a remote Linux system. You will be prompted for your TCC password for authentication.
  • To copy files from the local system to a remote system:
    scp file... user@host.domain:path
    where:
    file
    File to be copied.
    user
    Your username on the remote system.
    host.domain
    The Internet address of the remote system, such as linux.nmt.edu.
    path
    The absolute path name to the destination on the remote system.

  • To copy files from a remote system to your local system:
    scp user@host.domain:path ... dest
    where dest is the path name on your local system where you want the files copied.

Examples:
scp ann beth clyde forsythe@linux.nmt.edu:/u/forsythe/tmp
scp 'forsythe@linux.nmt.edu:/u/forsythe/images/*.jpg' pictures/LaborDay
=================

scp - Linux command line tool to copy files over ssh

scp stands for secure cp (copy), which means that you can copy files across an ssh connection that will be encrypted, and therefore secured.
You can this way copy files from or to a remote server, you can even copy files from one remote server to another remote server, without passing through your PC.
Usage
scp [[user@]from-host:]source-file [[user@]to-host:][destination-file]
Description of options
from-host
Is the name or IP of the host where the source file is, this can be omitted if the from-host is the host where you are actually issuing the command
user
Is the user which have the right to access the file and directory that is supposed to be copied in the cas of the from-host and the user who has the rights to write in the to-host
source-file
Is the file or files that are going to be copied to the destination host, it can be a directory but in that case you need to specify the -r option to copy the contents of the directory
destination-file
Is the name that the copied file is going to take in the to-host, if none is given all copied files are going to maintain its names
Options
-p
Preserves the modification and access times, as well as the permissions of the source-file in the destination-file
-q
Do not display the progress bar
-r
Recursive, so it copies the contents of the source-file (directory in this case) recursively
-v
Displays debugging messages
Examples
scp *.txt user@remote.server.com:/home/user/
This will copy all files with .txt extension to the directory /home/user in the remote.server.com host
scp -r miguel@10.1.2.2:/home/miguel/ miguel@10.1.2.3:/home/miguel/
This is going to recursively copy all files from miguel's Home directory on 10.1.2.2 host to his Home directory in 10.1.2.3 host.
Note
To use this command you need to have open-ssh installed in the hosts.

===========

In Unix, how do I use the scp command to securely transfer files between two computers?

In Unix, you can use the scp command to copy files and directories securely between remote hosts without starting an FTP session or logging into the remote systems explicitly. The scp command uses SSH to transfer data, so it requires a password or passphrase for authentication. Unlike rcp or FTP, scp encrypts both the file and any passwords exchanged so that anyone snooping on the network can't view them.
Warning: Be careful when copying between hosts files that have the same names; you may accidently overwrite them.
The syntax for the scp command is:
scp [options] [[user@]host1:]filename1 ... [[user@]host2:]filename2 For example, if user dvader is on a computer called empire.gov, and wants to copy a file called file1.txt to a directory called somedir in his account on a computer called deathstar.com, he would enter:
scp file1.txt dvader@deathstar.com:somedir Likewise, if he wanted to copy the entire contents of the somedir directory on deathstar.com back to his empire.gov account, he would enter:
scp -r dvader@deathstar.com:somedir somedir Similarly, if he is working on another computer, but wanted to copy a file called file1.txt from his home directory on empire.gov to a directory called somedir in his account on deathstar.com, he would enter:
scp dvader@empire.gov:file1.txt dvader@deathstar.com:somedir When using wildcards (e.g.,  *  and  ? ) to copy multiple files from a remote system, be sure to enclose the filenames in quotes. This is because the Unix shell, not the scp command, expands unquoted wildcards.
For more information about scp, consult its man page. At the Unix prompt, enter:
man scp

===========
Thanks to:
http://www.kb.iu.edu/data/agye.html 
http://www.go2linux.org/scp-linux-command-line-copy-files-over-ssh 
http://www.debian-administration.org/articles/27
http://infohost.nmt.edu/tcc/help/xfer/scp.html


Connect to Ubuntu 10.10 Maverick Meerkat via Windows Remote Desktop

This quick tutorial will show you how to easily connect to Ubuntu Lucid or Maverick via Windows Remote Desktop Connection. Since Remote Desktop is already installed on Windows, there’s no need to install additional tools to connect to Ubuntu. Using XRDP Server in Ubuntu, you can no connect to Ubuntu from Windows using Remote Desktop.


Getting started:











To get started, go to Applications –> Ubuntu Software Center.


ubuntu_xrdp_mav

Then search for and install xrdp.
xrdp
ubuntu_xrdp_mav_1

After installing, go to Windows and launch Remote Desktop Connection. Type the computer name or IP address and click ‘Connect’


ubuntu_xrdp_mav_2

Enjoy!

ubuntu_xrdp_mav_4

Thanks for reading and please come back soon.
Thanks to:
http://www.liberiangeek.net/2010/11/connect-ubuntu-10-10-maverick-meerkat-windows-remote-desktop/

How to Create a TAR File in Linux , How to decompress .tar.bz2 file and How Can I Do Archiving With Tar ?

Create a TAR File in Linux
Tape archive (TAR) files originally were used in Linux and Unix environments to back up data to tape. Today, TAR files are used more commonly to store archives of files and directories in one single file rather than to tape. They function similarly to the ZIP file format in the Windows environment. TAR files are used frequently in Linux as a single file archive, so it's ideal knowing how to create one.
Instructions

    • 1
      Run a command line window. In most Linux graphical user interface (GUI) environments, a command line window is run by clicking on the desktop computer icon.
    • 2
      Go to the directory where you want to add the TAR file. For example, if the files are in /export/home/user, the command to go to that directory would be "cd /export/home/user."
    • 3
      Create a TAR file. The command is: "tar -cvf myfile.tar filename1 filename2," where myfile.tar is name of the TAR file.
----------

How Can I Do Archiving With Tar?

The tar Command The tar (tape archive) command bundles a bunch of files together and creates an archive (commonly called a tar file or tarball) on a tape, disk drive, or floppy disk. The original files are not deleted after being copied to the tar file.
 

To create an archive using tar, use a command like this, which bundles all the files in the current directory that end with .doc into the alldocs.tar file: tar cvf alldocs.tar *.doc
Here's a second example, which creates a tar file named panda.tar containing all the files from the panda directory (and any of its subdirectories):
tar cvf panda.tar panda/
In these examples, the c, v, and f flags mean create a new archive, be verbose (list files being archived), and write the archive to a file. You can also create tar files on tape drives or floppy disks, like this:
tar cvfM /dev/fd0 panda Archive the files in the panda directory to floppy disk(s).
tar cvf /dev/rmt0 panda Archive the files in the panda directory to the tape drive.

The /dev/fd0 entry is Linux-ese for "floppy drive zero" (your A drive under DOS), and /dev/rmt0 means "removable media tape zero," or your primary tape drive. The M flag means use multiple floppy disks--when one disk is full, tar prompts you to insert another.
To automatically compress the tar file as it is being created, add the z flag, like this:
tar cvzf alldocs.tar.gz *.doc
In this example, I added the .gz suffix to the archive file name, because the z flag tells tar to use the same compression as the gzip command.
To list the contents of a tar file, use the t (type) flag in a command, like this:
tar tvf alldocs.tar List all files in alldocs.tar.
To extract the contents of a tar file, use the x (extract) flag in a command, like this:
tar xvf panda.tar Extract files from panda.tar.
This will copy all the files from the panda.tar file into the current directory. When a tar file is created, it can bundle up all the files in a directory, as well as any subdirectories and the files in them. So when you're extracting a tar file, keep in mind that you might end up with some new subdirectories in the current directory.
We've used several different flags in the sample tar commands so far. Here's a list of the most common flags:
c Create a new archive.
t List the contents of an archive.
x Extract the contents of an archive.
f The archive file name is given on the command line (required whenever the tar output is going to a file)
M The archive can span multiple floppies.
v Print verbose output (list file names as they are processed).
u Add files to the archive if they are newer than the copy in the tar file.
z Compress or decompress files automatically.
For more information on the tar command, see the tar manual.
===============================================

How to decompress .tar.bz2 file

Normally, I would bunzip the file first, then untar it next. But I found something after googling for a shortcut: it can all be done with just one tar command.

$tar -xjvf example.tar.bz2

Notice that, we use j flag to decompress bzip2 file and z flag for gzip file.

Tips: Prevent Motorcycle Accidents

In this generation wherein our roads are occupied by a large volume of vehicles, the chance of being stuck in a heavy traffic is quite high. This is one of the reasons people choose riding their motorcycles to reach their daily destinations with much ease. Another thing is; some types of motorcycles are more fuel-efficient compared to utilizing other kinds of vehicles. This enables the bike owners to save more money for their other expenses.

On the other hand, due to the increasing popularity of motorcycles, rapid growth in the number of motorcycle accidents has resulted. Each year, at least five percent of all road accident casualties are attributed to motorcycle crashes. As we clearly perceive, motorcyclists are considerably unprotected in a motorcycle since it has no protective metal cage to ensure the safety of the rider. In addition, motorcycles also lack any safety gadgets such as air bags, windshields and safety belts. Thus, it has no match to a fearsome trucks or any other four-wheeler.

To lessen the possibility of being involved in a motorcycle accident than can cause serious personal injuries, the riders may follow these tips:

- Be courteous and respectful to other motorist who uses the roads

- Never practice tailgating

- Avoid riding a motorcycle when you are under the influence of liquor

- Do not ride between slow moving vehicles

- Recognize and follow the traffic rules and ordinances

- Reduce the noise produced by the motorcycle

- Utilize signals whenever necessary

- Be cautious especially at road intersections

- Always check the side mirrors for possible upcoming vehicles - Be watchful on road hazards and defects as well as traffic problems ahead

- Always be on the road position where the other motorists clearly see you

- Maintain a safe speed that you are most comfortable of and with consistency to your driving capability and road conditions - Have a complete check up on your motorcycle especially the brakes

- Wear your protective gears such as a helmet, jackets, proper footwear and gloves

There are still other ways to prevent motorcycle accidents and injuries. These can be well understood if you will try to attend a motorcycle-riding training. However, if you are already engaged in these accidents, do not accept the fault better consult a motorcycle accident attorney to determine if you have a case to pursue. Your legal counsel will evaluate the incident. Then, if he finds a liability or fault on the other party, he will help you in recovering damages against the defendant. Keep in mind that the law entitles all the motorists with such protection that they are worthy of. We just have to know how to utilize those rights.

Safe Riding Tips
  • Always wear a helmet, it is the stepping stone of motorcycle safety, the helmet should pass the standard quality test and the strap should be properly locked.
  • Read the owners' manual properly to familiarize yourself with starting, acceleration, braking.
  • Familiarize yourself with the motorcycle in places which don't have a heavy traffic.
  • Ride alone if you are not confident of taking a pillion rider, because you could be putting your life as well as that of the pillion rider at risk.
  • Apply the brake judiciously to avoid skidding and overturning, also apply the clutch for a better effect.
  • Always be careful of four wheelers and heavy vehicles like the buses and lorries as collision with them could be fatal.
  • A major problem with two wheelers is that they sometimes can't be spotted clearly by other vehicles, so a two wheeler rider should wear bright colored clothes, honk and use headlight to attract the attention of the bigger and heavier vehicles when necessary.
  • Don't change lanes frequently, and stick to the lane marked for the two wheelers.
  • Stop at the red light and before the stop line; make sure that you don't step up the gas when the light turns amber, because amber light tells you to slow down.
  • Carry a valid driving license along with all the necessary and relevant papers of the bike. Make sure your bike is insured to take care of certain mandatory expenses in the event of an accident.
  • Don't talk on the cell phone while riding, it can lead to distractions and hence accidents. If you are in a profession which makes it mandatory for you to stay connected use a hands free or park your two-wheeler at the roadside, finish the conversation and then resume your journey.
  • Ride very carefully during the monsoons as in the wet conditions the braking distance doubles so does the chance of accidents.
  • Always take a less congested route even if it means you have to spend that extra bit of time to reach your destination.
  • Don't over speed on roads, which are unfamiliar to you, as potholes can cause your two-wheeler to overturn.
  • Alcohol and two wheelers are a deadly mix, avoid it.
  • It's an art to balance a two wheeler; the rider should be erect and sit at a correct distance to enable quick reactions and a safer journey.
If these riding tips are followed religiously it will cut down the chances of accidents and make two-wheeler
riding an enjoyable experience.

----------



Sunday, April 24, 2011

How long it takes for Broken Bones / Fractures to Heal

The following is a rough estimate to how long it will take for your poor broken bone to heal in a cast. Remember that if you smoke or drink alcohol heavy, or required surgical correction, these times may be longer.
Bone Broken
Time for it to Heal
Collar bone (clavicle)
3-8 weeks
Shoulder blade (scapula)
6 weeks
Ribs
4 weeks
Upper arm (humerus)
4-10 weeks
Lower arm (radius,ulna)
6 weeks
Wrist
4-12 weeks
Fingers
4-6 weeks
Pelvis
4 - 6 weeks
Upper leg (femur)
12 weeks
Knee (patella)
4-6 weeks
Lower leg (tibia,fibula)
10-24 weeks
Ankle
6 weeks
Foot
3 - 12 weeks
Toes
3 weeks
Legs take so long to heal because they have to support the full weight of your body so they need to be pretty sturdy before you can start using 'em.

Thanks to:
http://www.doctorsecrets.com/your-bones/time-to-heal-broken-bone.htm


----------


Bone fracture

From Wikipedia, the free encyclopedia
Bone fracture
Classification and external resources

Internal and external views of an arm with a compound fracture, both before and after surgery.
ICD-10 Sx2 (where x=0-9 depending on the location of the fracture)
ICD-9 829
DiseasesDB 4939
MeSH D050723
A bone fracture (sometimes abbreviated FRX or Fx, Fx, or #) is a medical condition in which there is a break in the continuity of the bone. A bone fracture can be the result of high force impact or stress, or trivial injury as a result of certain medical conditions that weaken the bones, such as osteoporosis, bone cancer, or osteogenesis imperfecta, where the fracture is then properly termed a pathologic fracture.
Although broken bone and bone break are common colloquialisms for a bone fracture, break is not a formal orthopedic term.

Contents

[hide]

Classification

Orthopedic

In orthopedic medicine, fractures are classified in various ways. Historically they are named after the doctor who first described the fracture conditions. However, there are more systematic classifications in place currently.
All fractures can be broadly described as:
  • Closed (simple) fractures are those in which the skin is intact
  • Open (compound) fractures involve wounds that communicate with the fracture, or where fracture hematoma is exposed, and may thus expose bone to contamination. Open injuries carry a higher risk of infection.
Other considerations in fracture care are displacement (fracture gap) and angulation. If angulation or displacement is large, reduction (manipulation) of the bone may be required and, in adults, frequently requires surgical care. These injuries may take longer to heal than injuries without displacement or angulation.
  • Compression fractures usually occurs in the vertebrae, for example when the front portion of a vertebra in the spine collapses due to osteoporosis (a medical condition which causes bones to become brittle and susceptible to fracture, with or without trauma).
Other types of fracture are:
  • Complete fracture: A fracture in which bone fragments separate completely.
  • Incomplete fracture: A fracture in which the bone fragments are still partially joined. In such cases, there is a crack in the osseous tissue that does not completely traverse the width of the bone.[1]
  • Linear fracture: A fracture that is parallel to the bone's long axis.
  • Transverse fracture: A fracture that is at a right angle to the bone's long axis.
  • Oblique fracture: A fracture that is diagonal to a bone's long axis.
  • Spiral fracture: A fracture where at least one part of the bone has been twisted.
  • Comminuted fracture: A fracture in which the bone has broken into a number of pieces.
  • Impacted fracture: A fracture caused when bone fragments are driven into each other.

Anatomical

An anatomical classification may begin with specifying the involved body part, such as the head or arm, followed with more specific localization. Fractures that have additional definition criteria than merely localization can often be classified as subtypes of fractures that merely are, such as a Holstein-Lewis fracture being a subtype of a humerus fracture. However, most typical examples in an orthopedic classification given in previous section cannot appropriately be classified into any specific part of an anatomical classification, as they may apply to multiple anatomical fracture sites.

OTA classification

The Orthopaedic Trauma Association, an association for orthopaedic surgeons, adopted and then extended the classification of Müller and the AO foundation [9] ("The Comprehensive Classification of the Long Bones") an elaborate classification system to describe the injury accurately and guide treatment.[10][11] There are five parts to the code:
  • Bone: The OTA classification of a fracture starts by coding for the bone involved:
(1) Humerus fracture, (2) Radius fracture/Ulnar fracture, (3) Femoral fracture, (4) Tibial fracture/Fibular fracture, (5) Spinal fracture, (6) Pelvic fracture, (24) Carpal fracture, (25) Metacarpal fracture, (26) Phalanx fracture of the hand, (72) Talus fracture, (73) Calcaneus fracture, (74) Navicular fracture, (75) Cuneiform bone fracture, (76) Cuboid bone fracture, (80) LisFranc fracture, (81) Metatarsal fracture, (82) Phalanx fracture of the foot, (45) Patella fracture, (06) Clavicular fracture, (09) Scapular fracture
  • Location: a code for the part of the bone involved (e.g. shaft of the femur): proximal=1, diaphyseal=2, distal=3 (at the ankle the malleolar region is considered separately due to the pre-existing Weber classification and coded as 4[12]). Except at the proximal femur the distal and proximal regions of the bone are defined by a square that is as wide as the as the distance between the condyles. The diaphysis is considered to be the rest of the bone between these two squares.
  • Type: It is important to note whether the fracture is simple or multifragmentary and whether it is closed or open: A=simple fracture, B=wedge fracture, C=complex fracture
  • Group: The geometry of the fracture is also described by terms such as transverse, oblique, spiral, or segmental.
  • Subgroup: Other features of the fracture are described in terms of displacement, angulation and shortening. A stable fracture is one which is likely to stay in a good (functional) position while it heals; an unstable one is likely to shorten, angulate or rotate before healing and lead to poor function in the long term.

Other classification systems

There are other systems used to classify different types of bone fractures:

Signs and symptoms

Although bone tissue itself contains no nociceptors, bone fracture is very painful for several reasons:[19]
  • Edema of nearby soft tissues caused by bleeding of torn periosteal blood vessels evokes pressure pain.
Damage to adjacent structures such as nerves or vessels, spinal cord and nerve roots (for spine fractures), or cranial contents (for skull fractures) can cause other specific signs and symptoms.

Pathophysiology

The natural process of healing a fracture starts when the injured bone and surrounding tissues bleed, forming a fracture Hematoma. The blood coagulates to form a blood clot situated between the broken fragments. Within a few days blood vessels grow into the jelly-like matrix of the blood clot. The new blood vessels bring phagocytes to the area, which gradually remove the non-viable material. The blood vessels also bring fibroblasts in the walls of the vessels and these multiply and produce collagen fibres. In this way the blood clot is replaced by a matrix of collagen. Collagen's rubbery consistency allows bone fragments to move only a small amount unless severe or persistent force is applied.
At this stage, some of the fibroblasts begin to lay down bone matrix (calcium hydroxyapatite) in the form of insoluble crystals. This mineralization of the collagen matrix stiffens it and transforms it into bone. In fact, bone is a mineralized collagen matrix; if the mineral is dissolved out of bone, it becomes rubbery. Healing bone callus is on average sufficiently mineralized to show up on X-ray within 6 weeks in adults and less in children. This initial "woven" bone does not have the strong mechanical properties of mature bone. By a process of remodeling, the woven bone is replaced by mature "lamellar" bone. The whole process can take up to 18 months, but in adults the strength of the healing bone is usually 80% of normal by 3 months after the injury.
Several factors can help or hinder the bone healing process. For example, any form of nicotine hinders the process of bone healing, and adequate nutrition (including calcium intake) will help the bone healing process. Weight-bearing stress on bone, after the bone has healed sufficiently to bear the weight, also builds bone strength. Although there are theoretical concerns about NSAIDs slowing the rate of healing, there is not enough evidence to warrant withholding the use of this type analgesic in simple fractures.[20]

Effects of nicotine

Smokers generally have lower bone density than non-smokers, so have a much higher risk of fractures. There is also evidence that smoking delays bone healing. Some research indicates, for example, that it delays tibial shaft fracture healing from a median healing time of 136 to a median healing time of 269 days[21]. This means that the fracture healing time was approximately doubled in smokers. Although some other studies show less extreme effects, it is still shown that smoking delays fracture healing.

Diagnosis

A bone fracture can be diagnosed clinically based on the history given and the physical examination performed. Imaging by X-ray is often performed to view the bone suspected of being fractured. In situations where x-ray alone is insufficient, a computed tomograph (CT scan) may be performed.

Treatment

X-ray showing the proximal portion of a fractured tibia with an intramedullary nail.
X-ray showing the distal portion of a fractured tibia and intramedular nail.
Treatment of bone fractures are broadly classified as surgical or conservative, the latter basically referring to any non-surgical procedure, such as pain management, immobilization or other non-surgical stabilization. A similar classification is open versus closed treatment, in which open treatment refers to any treatment in which the fracture site is surgically opened, regardless of whether the fracture itself is an open or closed fracture.

Pain management

In arm fractures in children, ibuprofen has been found to be equally effective as the combination of acetaminophen and codeine.[22]

[edit] Immobilization

Since bone healing is a natural process which will most often occur, fracture treatment aims to ensure the best possible function of the injured part after healing. Bone fractures are typically treated by restoring the fractured pieces of bone to their natural positions (if necessary), and maintaining those positions while the bone heals. Often, aligning the bone, called reduction, in good position and verifying the improved alignment with an X-ray is all that is needed. This process is extremely painful without anesthesia, about as painful as breaking the bone itself. To this end, a fractured limb is usually immobilized with a plaster or fiberglass cast or splint which holds the bones in position and immobilizes the joints above and below the fracture. When the initial post-fracture edema or swelling goes down, the fracture may be placed in a removable brace or orthosis. If being treated with surgery, surgical nails, screws, plates and wires are used to hold the fractured bone together more directly. Alternatively, fractured bones may be treated by the Ilizarov method which is a form of external fixator.
Occasionally smaller bones, such as phalanges of the toes and fingers, may be treated without the cast, by buddy wrapping them, which serves a similar function to making a cast. By allowing only limited movement, fixation helps preserve anatomical alignment while enabling callus formation, towards the target of achieving union.
Splinting results in the same outcome as casting in children who have a distal radius fracture with little shifting.[23]

Surgery

Surgical methods of treating fractures have their own risks and benefits, but usually surgery is done only if conservative treatment has failed or is very likely to fail. With some fractures such as hip fractures (usually caused by osteoporosis or osteogenesis Imperfecta), surgery is offered routinely, because the complications of non-operative treatment include deep vein thrombosis (DVT) and pulmonary embolism, which are more dangerous than surgery. When a joint surface is damaged by a fracture, surgery is also commonly recommended to make an accurate anatomical reduction and restore the smoothness of the joint.
Infection is especially dangerous in bones, due to the recrudescent nature of bone infections. Bone tissue is predominantly extracellular matrix, rather than living cells, and the few blood vessels needed to support this low metabolism are only able to bring a limited number of immune cells to an injury to fight infection. For this reason, open fractures and osteotomies call for very careful antiseptic procedures and prophylactic antibiotics.
Occasionally bone grafting is used to treat a fracture.
Sometimes bones are reinforced with metal. These implants must be designed and installed with care. Stress shielding occurs when plates or screws carry too large of a portion of the bone's load, causing atrophy. This problem is reduced, but not eliminated, by the use of low-modulus materials, including titanium and its alloys. The heat generated by the friction of installing hardware can easily accumulate and damage bone tissue, reducing the strength of the connections. If dissimilar metals are installed in contact with one another (i.e., a titanium plate with cobalt-chromium alloy or stainless steel screws), galvanic corrosion will result. The metal ions produced can damage the bone locally and may cause systemic effects as well.
Electrical bone growth stimulation or osteostimulation has been attempted to speed or improve bone healing. Results however do not support its effectiveness.[24]

Complications

An old fracture with nonunion of the fracture fragments.
Some fractures can lead to serious complications including a condition known as compartment syndrome. If not treated, compartment syndrome can result in amputation of the affected limb. Other complications may include non-union, where the fractured bone fails to heal or mal-union, where the fractured bone heals in a deformed manner.

In children

In children, whose bones are still developing, there are risks of either a growth plate injury or a greenstick fracture.
  • A greenstick fracture occurs due to mechanical failure on the tension side. That is, since the bone is not as brittle as it would be in an adult, it does not completely fracture, but rather exhibits bowing without complete disruption of the bone's cortex in the surface opposite the applied force.
  • Growth plate injuries, as in Salter-Harris fractures, require careful treatment and accurate reduction to make sure that the bone continues to grow normally.
  • Plastic deformation of the bone, in which the bone permanently bends but does not break, is also possible in children. These injuries may require an osteotomy (bone cut) to realign the bone if it is fixed and cannot be realigned by closed methods.
  • Certain fractures are known to occur mainly in the pediatric age group, such as fracture of the clavicle & supracondylar fracture of the humerus.

See also

 References

  1. ^ TheFreeDictionary > incomplete fracture Citying: Mosby's Medical Dictionary, 8th edition. © 2009
  2. ^ Essex Lopresti fracture at Wheeless' Textbook of Orthopaedics online
  3. ^ Bennett's fracture-subluxation at GPnotebook
  4. ^ Hunter, Tim B; Leonard F Peltier, Pamela J Lund (May 2000). "Musculoskeletal Eponyms: Who Are Those Guys?". RadioGraphics 20 (3): 819–836. Retrieved 2009-10-17.
  5. ^ Mellick LB, Milker L, Egsieker E (October 1999). "Childhood accidental spiral tibial (CAST) fractures". Pediatr Emerg Care 15 (5): 307–9. doi:10.1097/00006565-199910000-00001. PMID 10532655.
  6. ^ Tim B Hunter, Leonard F Peltier, Pamela J Lund (2000). "Musculoskeletal Eponyms: Who Are Those Guys?". RadioGraphics 20: 829. Retrieved 2009-11-13.
  7. ^ Perry, CR; Rice S, Rao A, Burdge R. (Oct 1983). "Posterior fracture-dislocation of the distal part of the fibula. Mechanism and staging of injury.". J Bone Joint Surg Am. 65 (8): 1149–57. PMID 6630259. Retrieved 2009-10-10.
  8. ^ TheFreeDictionary > Lisfranc's fracture Citing: Mosby's Medical Dictionary, 8th edition. Copyright 2009
  9. ^ http://www.ota.org/compendium/2007JOTFractureCompNew/97042.2Introduction%20S1-S6.pdf
  10. ^ "Fracture and dislocation compendium. Orthopaedic Trauma Association Committee for Coding and Classification" (pdf). J Orthop Trauma 10 Suppl 1: v–ix, 1–154. 1996. PMID 8814583. Archived from the original on 2007-09-28. Retrieved 2007-11-28.
  11. ^ "Orthopaedic Trauma Association/ Committee for Coding and Classification: Fracture and Dislocation Compendium". Orthopaedic Trauma Association. Retrieved 2007-11-28.
  12. ^ "Proximal forearm - AO Surgery Reference".
  13. ^ 1590689797 at GPnotebook
  14. ^ Rüedi, etc. all; Thomas P. Rüedi, Richard E. Buckley, Christopher G. Moran (2007). AO principles of fracture management, Volume 1. Thieme. p. Page 96. ISBN 3131174420.
  15. ^ "Fractures of the Acetabulum".
  16. ^ Mourad L (1997). "Neer classification of fractures of the proximal humerus". Orthop Nurs 16 (2): 76. PMID 9155417.
  17. ^ "eMedicine - Proximal Humerus Fractures: Article by Mark Frankle, MD". Retrieved 2007-12-15.
  18. ^ "Seinsheimer's Classification of Subtrochanteric Frxs - Wheeless' Textbook of Orthopaedics". Retrieved 2007-12-15.
  19. ^ MedicineNet - Fracture Medical Author: Benjamin C. Wedro, MD, FAAEM.
  20. ^ "BestBets: Do non-steroidal anti-inflammatory drugs cause a delay in fracture healing?".
  21. ^ http://www.medicine.ox.ac.uk/bandolier/booth/painpag/wisdom/NSAIbone.html
  22. ^ Drendel AL, Gorelick MH, Weisman SJ, Lyon R, Brousseau DC, Kim MK (October 2009). "A randomized clinical trial of ibuprofen versus acetaminophen with codeine for acute pediatric arm fracture pain". Ann Emerg Med 54 (4): 553–60. doi:10.1016/j.annemergmed.2009.06.005. PMID 19692147.
  23. ^ Boutis K, Willan A, Babyn P, Goeree R, Howard A (October 2010). "Cast versus splint in children with minimally angulated fractures of the distal radius: a randomized controlled trial". CMAJ 182 (14): 1507–12. doi:10.1503/cmaj.100119. PMC 2950182. PMID 20823169.
  24. ^ Mollon B, da Silva V, Busse JW, Einhorn TA, Bhandari M (November 2008). "Electrical stimulation for long-bone fracture-healing: a meta-analysis of randomized controlled trials". J Bone Joint Surg Am 90 (11): 2322–30. doi:10.2106/JBJS.H.00111. PMID 18978400.

 External links

Thanks to : wikipedia
http://en.wikipedia.org/wiki/Bone_fracture