TOKYO MASTER BANNER

MINISTRY OF TOKYO
US-ANGLO CAPITALISMEU-NATO IMPERIALISM
Illegitimate Transfer of Inalienable European Rights via Convention(s) & Supranational Bodies
Establishment of Sovereignty-Usurping Supranational Body Dictatorships
Enduring Program of DEMOGRAPHICS WAR on Europeans
Enduring Program of PSYCHOLOGICAL WAR on Europeans
Enduring Program of European Displacement, Dismemberment, Dispossession, & Dissolution
No wars or conditions abroad (& no domestic or global economic pretexts) justify government policy facilitating the invasion of ancestral European homelands, the rape of European women, the destruction of European societies, & the genocide of Europeans.
U.S. RULING OLIGARCHY WAGES HYBRID WAR TO SALVAGE HEGEMONY
[LINK | Article]

*U.S. OLIGARCHY WAGES HYBRID WAR* | U.S. Empire's Casino Unsustainable | Destabilised U.S. Monetary & Financial System | U.S. Defaults Twice A Year | Causes for Global Financial Crisis of 2008 Remain | Financial Pyramids Composed of Derivatives & National Debt Are Growing | *U.S. OLIGARCHY WAGES HYBRID WAR* | U.S. Empire's Casino Unsustainable | Destabilised U.S. Monetary & Financial System | U.S. Defaults Twice A Year | Causes for Global Financial Crisis of 2008 Remain | Financial Pyramids Composed of Derivatives & National Debt Are Growing | *U.S. OLIGARCHY WAGES HYBRID WAR*

Who's preaching world democracy, democracy, democracy? —Who wants to make free people free?
[info from Craig Murray video appearance, follows]  US-Anglo Alliance DELIBERATELY STOKING ANTI-RUSSIAN FEELING & RAMPING UP TENSION BETWEEN EASTERN EUROPE & RUSSIA.  British military/government feeding media PROPAGANDA.  Media choosing to PUBLISH government PROPAGANDA.  US naval aggression against Russia:  Baltic Sea — US naval aggression against China:  South China Sea.  Continued NATO pressure on Russia:  US missile systems moving into Eastern Europe.     [info from John Pilger interview follows]  War Hawk:  Hillary Clinton — embodiment of seamless aggressive American imperialist post-WWII system.  USA in frenzy of preparation for a conflict.  Greatest US-led build-up of forces since WWII gathered in Eastern Europe and in Baltic states.  US expansion & military preparation HAS NOT BEEN REPORTED IN THE WEST.  Since US paid for & controlled US coup, UKRAINE has become an American preserve and CIA Theme Park, on Russia's borderland, through which Germans invaded in the 1940s, costing 27 million Russian lives.  Imagine equivalent occurring on US borders in Canada or Mexico.  US military preparations against RUSSIA and against CHINA have NOT been reported by MEDIA.  US has sent guided missile ships to diputed zone in South China Sea.  DANGER OF US PRE-EMPTIVE NUCLEAR STRIKES.  China is on HIGH NUCLEAR ALERT.  US spy plane intercepted by Chinese fighter jets.  Public is primed to accept so-called 'aggressive' moves by China, when these are in fact defensive moves:  US 400 major bases encircling China; Okinawa has 32 American military installations; Japan has 130 American military bases in all.  WARNING PENTAGON MILITARY THINKING DOMINATES WASHINGTON. ⟴  

June 21, 2016

Linux Permissions


LINUX
USERS, GROUPS & PERMISSIONS
Eli the Computer Guy
https://www.youtube.com/watch?v=zRw0SKaXSfI


ADD USERS

sudo adduser <username>

prompts will be given, for fleshing out profile


DELETE USERS

sudo userdel <username>

USER PROFILE INFO - TEXT FILE

file location:  /etc/passwd

VIEW USERS ON LINUX

sudo vim [or whatever text editor] /etc/passwd

example other text editor:

mousepad
therefore variation of command:  sudo mousepad /etc/password

CHANGE USER'S PASSWORD

sudo passwd <username>

prompt will guide

CONFIGURATION FILES CONTAINING USER INFO

        = CONTAINED IN TEXT FILE FORMAT

/etc/passwd

THREE DIGIT NUMBERS INDICATE PERMISSIONS

Example:

User, Group, Others
7, 7, 7

7 = full control  (security risk, save for User - versus Group, Others)

  • READ PERMISSION = 4
  • WRITE PERMISSION = 2
  • EXECUTE = 1

php files are scripts
to work they have to be executed
(everyone needs at least a 1 permission to execute scripts on your website)

(permission to write is out for Others (website visitors))

eg.  website / web-server = min. 5 for 'Others' (ie read / execute)
eg.  full permissions = 7  | read-write permissions = 6

example:  7, 7, 5

  • permit read           4
  • deny write             0
  • permit execute     1   ...   equals:  5 (minimum)
sudo chmod <number permissions, eg. 7, 7, 5> <foldername> -R

-R = recursive (changes associated / permissions all the way down)


example:  sudo chmod 7,7,5 <foldername> -R

chmod WITH NUMBERS

  • execute = 1
  • write = 2
  • read = 4
    PERMISSIONS DEPEND ON INTERNAL SECURITY POLICY

    eg.  
    -rw-rw-rwx permissions use the following:

    Owner                    Group                  Other

    read & write         read & write        read, write & execute

    4+2=6                  4+2=6                 4+2+1=7

    equals:  6, 6, 7


    TO EXECUTE:  sudo chmod 667 <foldername>

    Other Example:

    User                     Group                 Others
    4+2+1 = 7           4 + 2 + 0 = 6     0 + 0 + 0 = 0

    equals:  7, 6, 0

    TO EXECUTE:  sudo chmod 760 <foldername>


    LIST ALL PERMISSIONS

    command:  ls -al

    LIST ALL FILES / FOLDERS 
    [ in current directory ]

     
    command:  ls -l  
    permissions for folder shown - eg.  drwxrwxrwx 
    (completely open, bad security)
    ('d' represents 'directory' & balance is permissions)
    (permissions:  Read, Write, eXecute)

    EXAMPLE:

    command to change:  sudo chmod 755 <foldername -R

    while in directory that requires change

    + add permission
    - remove permission
    = set permission
    chown

    CHANGE OWNER FILES OR FOLDERS

    USER or GROUP can own file or folder

    OWNERSHIP CHANGE - USER

    sudo chown -R <username> <file or folder giving ownership of>

    Recursive -R for subsequent change to all files & subdirectories (if required)


    OWNERSHIP CHANGE - GROUP

    sudo chgrp -R <GroupName> <file or folder giving ownership of>


    No comments: