Views:
4,907β
Votes: 2β
β
Solution
Tags:
16.04
server
mssql
Link:
π See Original Answer on Ask Ubuntu β§ π
URL:
https://askubuntu.com/q/850700
Title:
Getting error code(1) when installing MSSQL server in Ubuntu 16.04
ID:
/2016/11/18/Getting-error-code_1_-when-installing-MSSQL-server-in-Ubuntu-16.04
Created:
November 18, 2016
Edited: November 18, 2016
Upload:
September 15, 2024
Layout: post
TOC:
false
Navigation: false
Copy to clipboard: false
When Microsoft Structured Query Language (SQL) says it needs 3.25 GB of free memory it is talking about RAM (Random Access Memory) or volatile memory.
When you say you have 283.4 GB of memory free you are talking about non-volatile memory aka Hard Disk storage or Solid State Disk (SSD) storage.
Although they are both βmemoryβ you are comparing apples to oranges which are both βfruitβ.
To see how much RAM you have available use the command free
from the Terminal. ie:
$ free
total used free shared buff/cache available
Mem: 8031732 1614708 4377704 750208 2039320 5357500
Swap: 8191996 0 8191996
The first row βMem:β refers to RAM. The second row βSwapβ refers to hard disk swap space which weβll call βbackup RAMβ for lack of a better term.
The first column is your total installed RAM / Swap (in this case 8 GB each), the second how much is used and the third how much is βfreeβ. In this case 4 GB of RAM is free and 8 GB of Swap is free.
To increase your free RAM you can close your web browser, music players, videos, etc.