Caecina Decius Aginatius Albinus (urban prefect 414)

Caecina Decius Aginatius Albinus (floruit 414) was an aristocrat of the Roman Empire. He was praefectus urbi in 414,[1] succeeding his friend Rutilius Namatianus, and possibly again in 426. Some authorities spell his name Caecina Decius Acinatius Albinus.

Biography

His father was probably Caecina Decius Albinus, and his grandfather Aginatius; Albinus was therefore a member of the Roman aristocracy related to the families of the Ceionii and the Decii. Caecina Decius Basilius, consul in 463, might be his son.

Albinus was an associate of the poet Rutilius Claudius Namatianus, who described him as "a youth in the flower of life" (vitae flore puer), owning a villa near Namatianus at Volaterrae in modern Tuscany, having a son Rufius, and who was Namatianus' successor as praefectus urbi.[2] During his tenure as praefectus urbi, Albinus requested the emperor Honorius to increment the food reserved for the population of Rome, as it was increasing after the sack of Alaric in 410.[3]

Alan Cameron has argued that Albinus is identical to the "clarissimo Albino" the grammarian Servius dedicated his treatise on meter. If this is correct, it would strengthen Cameron's further identification of Albinus with the Decius who is mentioned near the beginning of the Saturnalia of Macrobius.[4]

Ronald J. Weber points out that it is possible he was also the praefectus urbi Flavius Albinus attested in a 426 law preserved in the Codex Theodosianus, arguing that the 12-year gap is not a significant objection to this identification.[5] If they are not the same person, then Albinus vanishes from the historical record after 414.

Notes

  1. CIL VI, 1659, CIL VI, 1703
  2. De reditu suo I.167-171, 466-474. Translated by Harold Isbell, Last Poets of Imperial Rome (Harmondsworth: Penguin, 1971), pp. 225, 233f
  3. Codex Theodosianus, XIII.5.38
  4. Cameron, "The Date and Identity of Macrobius", Journal of Roman Studies, 56 (1966), p. 30
  5. Weber, "Albinus: The Living Memory of a Fifth-Century Personality", Historia: Zeitschrift für Alte Geschichte, 38 (1989), p. 484

Further reading

Political offices
Preceded by
Rutilius Claudius Namatianus
Praefectus urbi of Rome
414-415
Succeeded by
Gracchus
gollark: The signatures are programatically generated from the contents of the file and my private key. PotatOS has the *public* key, so it can verify that the signature was generated from the corresponding private key.
gollark: Um, no, that's not how it works.
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?
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.