<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
<channel>
<title>F. A. Q. - Recent questions and answers in Parallels RAS</title>
<link>https://clearpointhosting.com/q2a/index.php/qa/cloud-systems/parallels-ras</link>
<description>Powered by Question2Answer</description>
<item>
<title>Answered: How do I allocate memory to work as swap space in an Amazon EC2 instance by using a swap file?</title>
<link>https://clearpointhosting.com/q2a/index.php/60/allocate-memory-work-swap-space-amazon-instance-using-swap?show=61#a61</link>
<description>&lt;p&gt;&lt;a href=&quot;https://aws.amazon.com/premiumsupport/knowledge-center/ec2-memory-swap-file/&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;https://aws.amazon.com/premiumsupport/knowledge-center/ec2-memory-swap-file/&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;em&gt;Last updated: 2021-03-09&lt;/em&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;I want to allocate memory to work as a swap file in an Amazon Elastic Compute Cloud (Amazon EC2) instance. How do I do that?&lt;/strong&gt;&lt;/p&gt;&lt;h2 style=&quot;text-align:start&quot;&gt;Short description&lt;/h2&gt;&lt;p&gt;When physical RAM is already in use, Amazon EC2 instances use swap space as a short-term replacement for physical RAM.&lt;/p&gt;&lt;p&gt;Contents of RAM that aren&#039;t in active use or that aren&#039;t needed as urgently as other data or instructions can be temporarily paged to a swap file. This frees up RAM for more immediate use.&lt;/p&gt;&lt;p&gt;You can also create swap space on a partition. For more information, see&amp;nbsp;&lt;a target=&quot;_blank&quot; rel=&quot;nofollow&quot; href=&quot;https://aws.amazon.com/premiumsupport/knowledge-center/ec2-memory-partition-hard-drive/&quot;&gt;How do I allocate memory to work as swap space on an Amazon EC2 instance using a partition on my hard drive?&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Note:&lt;/strong&gt;&amp;nbsp;It&#039;s a best practice to create swap space only on ephemeral storage instance store volumes.&lt;/p&gt;&lt;h2 style=&quot;text-align:start&quot;&gt;Resolution&lt;/h2&gt;&lt;p&gt;&lt;strong&gt;Note:&lt;/strong&gt;&amp;nbsp;Before beginning this resolution,&amp;nbsp;&lt;a target=&quot;_blank&quot; rel=&quot;nofollow&quot; href=&quot;https://btrfs.wiki.kernel.org/index.php/FAQ#Does_btrfs_support_swap_files.3F&quot;&gt;verify that your file system supports the usage of swap files&lt;/a&gt;.&lt;/p&gt;&lt;h3 style=&quot;text-align:start&quot;&gt;Calculate the swap space size&lt;/h3&gt;&lt;p&gt;For information on how to calculate the size of your swap space, see the following:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;a target=&quot;_blank&quot; rel=&quot;nofollow&quot; href=&quot;https://www.linux.com/news/all-about-linux-swap-space/&quot;&gt;All about Linux swap space&lt;/a&gt;&amp;nbsp;on the linux.com website.&lt;/li&gt;&lt;li&gt;&lt;a target=&quot;_blank&quot; rel=&quot;nofollow&quot; href=&quot;https://help.ubuntu.com/community/SwapFaq#How_much_swap_do_I_need.3F&quot;&gt;How much swap do I need?&lt;/a&gt;&amp;nbsp;on the help.ubuntu.com website.&lt;/li&gt;&lt;/ul&gt;&lt;h3 style=&quot;text-align:start&quot;&gt;Create a swap file&lt;/h3&gt;&lt;p&gt;1.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Use the&amp;nbsp;&lt;strong&gt;dd&lt;/strong&gt;&amp;nbsp;command to create a swap file on the root file system. In the command,&amp;nbsp;&lt;strong&gt;bs&lt;/strong&gt;&amp;nbsp;is the block size and&amp;nbsp;&lt;strong&gt;count&lt;/strong&gt;&amp;nbsp;is the number of blocks. The size of the swap file is the block size option multiplied by the count option in the&amp;nbsp;&lt;strong&gt;dd&amp;nbsp;&lt;/strong&gt;command. Adjust these values to determine the desired swap file size.&lt;/p&gt;&lt;p&gt;The block size you specify should be less than the available memory on the instance or you receive a &quot;memory exhausted&quot; error.&lt;/p&gt;&lt;p&gt;In this example&amp;nbsp;&lt;strong&gt;dd&lt;/strong&gt;&amp;nbsp;command, the swap file is 4 GB (128 MB x 32):&lt;/p&gt;&lt;pre&gt;$ sudo dd if=/dev/zero of=/swapfile bs=128M count=32&lt;/pre&gt;&lt;p&gt;2.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Update the read and write permissions for the swap file:&lt;/p&gt;&lt;pre&gt;$ sudo chmod 600 /swapfile&lt;/pre&gt;&lt;p&gt;3.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Set up a Linux swap area:&lt;/p&gt;&lt;pre&gt;$ sudo mkswap /swapfile&lt;/pre&gt;&lt;p&gt;4.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Make the swap file available for immediate use by adding the swap file to swap space:&lt;/p&gt;&lt;pre&gt;$ sudo swapon /swapfile&lt;/pre&gt;&lt;p&gt;5.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Verify that the procedure was successful:&lt;/p&gt;&lt;pre&gt;$ sudo swapon -s&lt;/pre&gt;&lt;p&gt;6.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Enable the swap file at boot time by editing the&amp;nbsp;&lt;strong&gt;/etc/fstab&lt;/strong&gt;&amp;nbsp;file.&lt;/p&gt;&lt;p&gt;Open the file in the editor:&lt;/p&gt;&lt;pre&gt;$ sudo vi /etc/fstab&lt;/pre&gt;&lt;p&gt;Add the following new line at the end of the file, save the file, and then exit:&lt;/p&gt;&lt;pre&gt;/swapfile swap swap defaults 0 0&lt;/pre&gt;</description>
<category>Parallels RAS</category>
<guid isPermaLink="true">https://clearpointhosting.com/q2a/index.php/60/allocate-memory-work-swap-space-amazon-instance-using-swap?show=61#a61</guid>
<pubDate>Sat, 16 Mar 2024 10:37:00 +0000</pubDate>
</item>
<item>
<title>Answered: How to set up 2FA for the first login using Google Authenticator to login to Parallels.</title>
<link>https://clearpointhosting.com/q2a/index.php/55/how-first-login-using-google-authenticator-login-parallels?show=56#a56</link>
<description>&lt;h4 style=&quot;color: rgb(0, 0, 0); font-family: arial, helvetica, sans-serif; font-size: 16px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;&quot;&gt;&lt;strong style=&quot;font-size:12pt&quot;&gt;Important:&lt;/strong&gt;&lt;span style=&quot;font-size:12pt&quot;&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;To use Google Authenticator, the time on a user device must be in sync with the time set on the RAS Connection Broker server. Otherwise, Google authentication will fail.&lt;/span&gt;&lt;/h4&gt;&lt;p style=&quot;color: rgb(0, 0, 0); font-family: arial, helvetica, sans-serif; font-size: 16px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; margin: 0px;&quot;&gt;Google Authenticator is supported in Parallels Client running on all supported platforms, including mobile, desktop, and Web.&lt;/p&gt;&lt;p style=&quot;color: rgb(0, 0, 0); font-family: arial, helvetica, sans-serif; font-size: 16px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; margin: 0px;&quot;&gt;To use Google Authenticator, a user needs to install the Authenticator app on their iOS or Android device. Simply visit Google Play or App Store and install the app. Once the Authenticator app is installed, the user is ready to connect to Parallels RAS using two-factor authentication.&lt;/p&gt;&lt;p style=&quot;color: rgb(0, 0, 0); font-family: arial, helvetica, sans-serif; font-size: 16px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; margin: 0px;&quot;&gt;To connect to Parallels RAS:&lt;/p&gt;&lt;ol style=&quot;-webkit-text-stroke-width:0px; background-color:#ffffff; color:#000000; font-family:arial,helvetica,sans-serif; font-size:16px; font-style:normal; font-variant-caps:normal; font-variant-ligatures:normal; font-weight:400; letter-spacing:normal; orphans:2; text-align:start; text-decoration-color:initial; text-decoration-style:initial; text-decoration-thickness:initial; text-indent:0px; text-transform:none; white-space:normal; widows:2; word-spacing:0px&quot;&gt;&lt;li&gt;The user opens Parallels Client or Web Client and logs in using his/her credentials.&lt;/li&gt;&lt;li&gt;The multi-factor authentication dialog opens displaying a barcode (also known as QR code) and a secret key.&lt;/li&gt;&lt;li&gt;The user opens the Google Authenticator app on their mobile device:&lt;ul&gt;&lt;li&gt;If this is the first time they use it, they tap&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;strong&gt;Begin&lt;/strong&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;and then tap&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;strong&gt;Scan a barcode&lt;/strong&gt;.&lt;/li&gt;&lt;li&gt;If a user already has another account in Google Authenticator, they tap the plus-sign icon and choose&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;strong&gt;Scan a barcode&lt;/strong&gt;.&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li&gt;The user then scans the barcode displayed in the Parallels Client login dialog.&lt;p class=&quot;my-0&quot; style=&quot;margin: 0px;&quot;&gt;If scanning doesn&#039;t work for any reason, the user goes back in the app, chooses&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;strong&gt;Enter a provided key&lt;/strong&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;and then enters the account name and the key displayed in the Parallels Client login dialog.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;The user then taps&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;strong&gt;Add account&lt;/strong&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;in the app, which will create an account and display a one time password.&lt;/li&gt;&lt;li&gt;The user goes back to Parallels Client, clicks&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;strong&gt;Next&lt;/strong&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;and enters the one time password in the&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;strong&gt;OTP&lt;/strong&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;field.&lt;/li&gt;&lt;/ol&gt;&lt;p style=&quot;color: rgb(0, 0, 0); font-family: arial, helvetica, sans-serif; font-size: 16px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; margin: 0px;&quot;&gt;On every subsequent logon, the user will only have to type their credentials (or nothing at all if the&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;strong&gt;Save password&lt;/strong&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;options was selected) and enter a one time password obtained from the Google Authenticator app (the app will continually generate a new password). If the RAS administrator resets a user (see the&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;strong&gt;Reset Users(s)&lt;/strong&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;field description at the beginning of this section), the user will have to repeat the registration procedure described above.&lt;/p&gt;&lt;p&gt;&lt;/p&gt;</description>
<category>Parallels RAS</category>
<guid isPermaLink="true">https://clearpointhosting.com/q2a/index.php/55/how-first-login-using-google-authenticator-login-parallels?show=56#a56</guid>
<pubDate>Thu, 25 Jan 2024 10:41:23 +0000</pubDate>
</item>
<item>
<title>Answered: How to change Parallels Server password.</title>
<link>https://clearpointhosting.com/q2a/index.php/53/how-to-change-parallels-server-password?show=54#a54</link>
<description>&lt;h3 style=&quot;color: rgb(0, 0, 0); font-family: arial, helvetica, sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;&quot;&gt;&lt;/h3&gt;&lt;p class=&quot;heading3&quot;&gt;Changing Domain Password&lt;/p&gt;&lt;p class=&quot;bodytext&quot; style=&quot;margin: 0px;&quot;&gt;If you need to change your domain account password, you can do it right from Parallels Client.&lt;/p&gt;&lt;p class=&quot;bodytext&quot; style=&quot;margin: 0px;&quot;&gt;To change your domain password:&lt;/p&gt;&lt;ol class=&quot;listnumber&quot;&gt;&lt;li class=&quot;listnumber&quot;&gt;&lt;p&gt;Click&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;strong class=&quot;specialbold&quot;&gt;File&lt;/strong&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;&amp;gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;strong class=&quot;specialbold&quot;&gt;Change Domain Password&lt;/strong&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;in the main menu (or right-click a connection and choose&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;strong class=&quot;specialbold&quot;&gt;Change Domain Password&lt;/strong&gt;).&lt;/p&gt;&lt;/li&gt;&lt;li class=&quot;listnumber&quot;&gt;&lt;p&gt;In the&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;strong class=&quot;specialbold&quot;&gt;Logon&lt;/strong&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;dialog, type your current password and click&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;strong class=&quot;specialbold&quot;&gt;OK&lt;/strong&gt;.&lt;/p&gt;&lt;/li&gt;&lt;li class=&quot;listnumber&quot;&gt;&lt;p&gt;In the&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;strong class=&quot;specialbold&quot;&gt;Change Password&lt;/strong&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;dialog, enter a new password in both fields and click&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;strong class=&quot;specialbold&quot;&gt;OK&lt;/strong&gt;.&lt;/p&gt;&lt;/li&gt;&lt;/ol&gt;&lt;p class=&quot;bodytext&quot; style=&quot;margin: 0px;&quot;&gt;Your domain account password is now changed. Your existing connections in Parallels Client are automatically updated to use the new password.&lt;/p&gt;&lt;p&gt;&lt;/p&gt;</description>
<category>Parallels RAS</category>
<guid isPermaLink="true">https://clearpointhosting.com/q2a/index.php/53/how-to-change-parallels-server-password?show=54#a54</guid>
<pubDate>Thu, 25 Jan 2024 10:39:23 +0000</pubDate>
</item>
<item>
<title>Answered: How to enable Drag and Drop of the files from the published desktop to the Mac machine?</title>
<link>https://clearpointhosting.com/q2a/index.php/37/how-enable-drag-and-drop-files-from-published-desktop-machine?show=38#a38</link>
<description>&lt;p&gt;The local folder needs to be redirected ro the RDS session for the drag and drop functionality to work.&lt;/p&gt;&lt;p&gt;1. Open Parallels Client for Mac&lt;/p&gt;&lt;p&gt;2. Open &lt;strong&gt;File &lt;/strong&gt;&amp;gt; &lt;strong&gt;Connection properties&lt;/strong&gt;&lt;/p&gt;&lt;figure&gt;&lt;a rel=&quot;nofollow&quot; href=&quot;http://kb.parallels.com/Attachments/kcs-178033/image.png&quot; data-fancybox=&quot;images&quot;&gt;&lt;img alt=&quot;&quot; src=&quot;http://kb.parallels.com/Attachments/kcs-178033/image.png&quot; style=&quot;height:158px; width:375px&quot;&gt;&lt;/a&gt;&lt;/figure&gt;&lt;p&gt;3. Go to &lt;strong&gt;Local Resources&lt;/strong&gt; &amp;gt; Check the &lt;strong&gt;Folders&lt;/strong&gt; and click &lt;strong&gt;Configure&lt;/strong&gt;&lt;/p&gt;&lt;figure&gt;&lt;a rel=&quot;nofollow&quot; href=&quot;http://kb.parallels.com/Attachments/kcs-178033/1.png&quot; data-fancybox=&quot;images&quot;&gt;&lt;img alt=&quot;&quot; src=&quot;http://kb.parallels.com/Attachments/kcs-178033/1.png&quot; style=&quot;height:428px; width:621px&quot;&gt;&lt;/a&gt;&lt;/figure&gt;&lt;p&gt;4. Add the folder which you&#039;d like to be able to drag and drop files to/from:&lt;/p&gt;&lt;figure&gt;&lt;a rel=&quot;nofollow&quot; href=&quot;http://kb.parallels.com/Attachments/kcs-178033/2.png&quot; data-fancybox=&quot;images&quot;&gt;&lt;img alt=&quot;&quot; src=&quot;http://kb.parallels.com/Attachments/kcs-178033/2.png&quot; style=&quot;height:320px; width:484px&quot;&gt;&lt;/a&gt;&lt;/figure&gt;&lt;p&gt;5. Please note that these changes will be applied next time you connect.&lt;/p&gt;&lt;p&gt;6. Please pay attention that GPO on the server should not prohibit redirection of local drives.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;From Parallels Client version 19, drag and drop functionality:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;You can drag and drop files to and from remote applications.&lt;/p&gt;&lt;p&gt;For example, you can drag and drop a local file to a remote application to open it, or you can drag and drop a file from the remote Windows Explorer to the local Explorer. You can also drag and drop objects like images and text from/to remote applications. Some limitations apply, so it may not work for all types of files and applications. The list below describes formats that are supported:&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Files&lt;/strong&gt; — files can be dragged from Finder and dropped to a remote application. The remote application will open the file given that it has access to the file itself. Any changes are done to the original file.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Virtual file contents&lt;/strong&gt; — dragging of virtual files similar to dragging attachments from a mail client to a remote application. A copy of the file is used temporarily. Usually the original file is not modified.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Global data formats&lt;/strong&gt; — dragging of elements like images or text blocks. This highly depends on the format itself, so it is not guaranteed that all applications and formats will work.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;EMF format &lt;/strong&gt;— when combining images and text, some applications convert the data into EMF (Enhanced Metafile), which is supported.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;HTML format &lt;/strong&gt;— dragging of HTML content from web browsers is supported.&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;Please note that while drag and drop is in progress, you cannot interact with the source and destination folders or applications. If the amount of data being transferred is large, you may have to wait until the transfer is complete.&lt;/p&gt;</description>
<category>Parallels RAS</category>
<guid isPermaLink="true">https://clearpointhosting.com/q2a/index.php/37/how-enable-drag-and-drop-files-from-published-desktop-machine?show=38#a38</guid>
<pubDate>Thu, 07 Sep 2023 07:17:54 +0000</pubDate>
</item>
</channel>
</rss>