Correct formatting.

This commit is contained in:
MikeRayMSFT
2017-03-13 18:24:37 -07:00
parent 8a5085d46f
commit 61fdc25171
+10 -10
View File
@@ -9,26 +9,27 @@ This folder contains the latest files and samples required to build a SQL Server
## Known Bugs ## Known Bugs
There is a problem with VDF_LikeDisk and VDF_RandomAccess where the backup/restore is aborted unexpectedly. There is a problem with VDF_LikeDisk and VDF_RandomAccess where the backup/restore is aborted unexpectedly.
## Steps ## Steps
1. Install the mssql-server and mssql-tools packages  1. Install the mssql-server and mssql-tools packages 
[Install SQL Server on Linux](http://docs.microsoft.com/sql/linux/sql-server-linux-setup)  [Install SQL Server on Linux](http://docs.microsoft.com/sql/linux/sql-server-linux-setup) 
[Install SQL Server tools on Linux](http://docs.microsoft.com/sql/linux/sql-server-linux-setup-tools)  [Install SQL Server tools on Linux](http://docs.microsoft.com/sql/linux/sql-server-linux-setup-tools) 
   
1. Install the clang and uuid-dev packages in order to build the sample.  1. Install the clang and uuid-dev packages in order to build the sample. 
  Example (for Ubuntu):    Example (for Ubuntu): 
```bash ```bash
sudo apt-get install clang  sudo apt-get install clang 
sudo apt-get install uuid-dev  sudo apt-get install uuid-dev 
```
1. Create a symbolic link to sqlcmd in /usr/bin
``` ```
1. Create a symbolic link to sqlcmd in /usr/bin
```bash
sudo ln -s /opt/mssql-tools/bin/sqlcmd /usr/bin/sqlcmd sudo ln -s /opt/mssql-tools/bin/sqlcmd /usr/bin/sqlcmd
``` ```
@@ -36,7 +37,6 @@ This folder contains the latest files and samples required to build a SQL Server
1. Run make to build the sample code 1. Run make to build the sample code
1. Run the vdi client as the mssql user or follow these instructions: 1. Run the vdi client as the mssql user or follow these instructions:
- Add the user running the vdi client to mssql group `sudo usermod -a -G mssql vdiuser`. - Add the user running the vdi client to mssql group `sudo usermod -a -G mssql vdiuser`.