FAQs
En anglais
Oracle Micros
WordPress
Windows 11
Windows 10
Windows Server
Mac OS
You can use Terminal command for Directory Services to Delete a User Account
Type the following command to list all users.
$ sudo dscl . list /Users
With the account name confirmed, type the following command in the Terminal to delete the account directory entry from your system:
$ sudo dscl . -delete /Users/Account_name
In this command, replace the word “Account_name” with the account name you found and confirmed in above step.After the account is deleted, the user’s home folder will still be on the disk in the /Macintosh HD/Users directory. At this point you can simply delete the directory to fully remove all items that were associated with the removed account.
A ZIP file bundles and, if possible, compresses multiple other files into a convenient and smaller package. However, the ZIP file may still be quite large and cumbersome to transport over the Internet. Split a large ZIP file into multiple parts to allow it to be more easily transported to customers or business partners over the Internet via email or a file-sharing service. You can do this from the terminal window of your OS X Macintosh.

Existing Zip File
Open the Terminal application located in the Applications/Utilities folder or under the Other app group in Launchpad.
Navigate to the folder where the ZIP file you wish to split is located. Use the cd (change directory) command to change folders. For example, enter “cd Documents” to change to the Documents folder from your home folder. Enter “cd My\ Folder” to change to a folder with a space in the name; the backslash escapes the space character and prevent it from being interpreted as the start of a new command. Enter “cd ..” to return to the previous folder. Enter the pwd (present working directory) command to check your current directory.
Enter the following command into the command line and press “Enter” to execute it. The command takes an input ZIP file and splits it into 100MB segments. The segments are titled in the form SplitArchive.zip, SplitArchive.z01, SplitArchive.z02 and so on.
zip MyArchive.zip –out SplitArchive.zip -s 100m
New Zip File
Create a new folder in Finder by selecting “New Folder” from the “File” menu or pressing “Command-Shift-N.”
Move the files you wish to archive into a ZIP file into this folder.
Open the Terminal application.
Navigate to the parent folder containing the folder with the files you wish to zip. For example, if you created a folder named “Q2Results” to archive in your Documents folder, you need to navigate to the Documents folder.
Enter the following command into the command line and click “Enter.” The command archives the folder Q2Results into Q2Results.zip in 50MB segments titled Q2Results.zip, Q2Results.z01, Q2Results.z02 and so on.
zip Q2Results –out Q2Results.zip -s 100m
- Log in as an admin user.
- Open Terminal from the Utilities folder.
- Type or paste this command in Terminal:sudo languagesetup
- Press Return.
- When prompted for a password, enter an administrator account password and press Return.
- A list of available languages is displayed. Type the number that appears next to the language you want to use, then press Return.
- Quit Terminal.
The next time you log out or restart your Mac, the login screen uses the language you set.