In this exemple of configuration i'll use:
For the database the user opensim with the password DB_Password. (Chose whatever you want instead)
For the domain name replace domain.com by your own.

Dependency installation:
Before installing OpenSim you need Mono, MySQL and unzip.

sudo apt install gnupg ca-certificates
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF
echo "deb https://download.mono-project.com/repo/ubuntu stable-focal main" | sudo tee /etc/apt/sources.list.d/mono-official-stable.list
sudo apt update
sudo apt dist-upgrade
sudo apt install mono-complete mysql-server unzip


MySQL configuration:

sudo nano /etc/mysql/my.cnf


Add the following lines before:
!includedir /etc/mysql/conf.d/
!includedir /etc/mysql/mysql.conf.d/

[mysqld]
default_storage_engine = InnoDB
disable_log_bin
innodb_buffer_pool_size = 2G
innodb_log_file_size = 256M
innodb_log_buffer_size = 16M
innodb_flush_method = O_DIRECT
innodb_flush_log_at_trx_commit = 0
innodb_buffer_pool_instances = 2
default-authentication-plugin=mysql_native_password


Restart MySQL:

sudo service mysql restart
sudo mysql_secure_installation -u root -p


Database creation:

sudo mysql
mysql> create database opensim;
mysql> create user opensim identified by 'DB_Password';
mysql> create user 'opensim'@'localhost' identified by 'DB_Password';
mysql> GRANT ALL PRIVILEGES ON opensim.* TO 'opensim'@'localhost';
mysql> FLUSH PRIVILEGES;


Check the opensim account is mysql_native_password and disconnect from MySQL:

mysql> SELECT user,authentication_string,plugin,host FROM mysql.user;
mysql> \q


Download and Extract OpenSim:

cd ~
wget http://opensimulator.org/dist/OpenSim-LastAutoBuild.zip
mkdir ~/HG
unzip OpenSim-LastAutoBuild.zip -d HG/


Grid configuration:

cd ~/HG/bin
cp Robust.HG.ini.example Robust.HG.ini
cp OpenSim.ini.example OpenSim.ini
cp config-include/GridCommon.ini.example config-include/GridCommon.ini
cp config-include/osslEnable.ini.example config-include/osslEnable.ini


Edit the Robust.HG.ini file

nano -c ~/HG/bin/Robust.HG.ini


Edit the lines 28 - 240 - 620 - 623 - 834
Uncomment 104 - 106 - 111 - 191 - 198 - 731

	[Const]
28		BaseURL = "http://domain.com"

	[ServiceList]
104 OfflineIMServiceConnector = "${Const|PrivatePort}/OpenSim.Addons.OfflineIM.dll:OfflineIMServiceRobustConnector" 106 GroupsServiceConnector = "${Const|PrivatePort}/OpenSim.Addons.Groups.dll:GroupsServiceRobustConnector" 111 UserProfilesServiceConnector = "${Const|PublicPort}/OpenSim.Server.Handlers.dll:UserProfilesConnector" [Hypergrid] 191 HomeURI = "${Const|BaseURL}:${Const|PublicPort}" 198 GatekeeperURI = "${Const|BaseURL}:${Const|PublicPort}" [DatabaseService] 240 ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=DB_Password;Old Guids=true;SslMode=None;" [GridInfoService] 620 gridname = "NOM DE LE GRID" 623 gridnick = "nom_de_la_grid" [UserAgentService] 731 ShowUserDetailsInHGProfile = True [UserProfilesService] 834 Enabled = true


Launch Robust and make sure there is no errors:

mono ~/HG/bin/Robust.exe -inifile=Robust.HG.ini


In the Robust console create the first user:

R.O.B.U.S.T.# create user
First name [Default]: Ludo
Last name [User]: Davis
Password:
Email []:
User ID (enter for random) []:
Model name []:


Quit Robust with the quit command

R.O.B.U.S.T.# quit


Edit the OpenSim.ini file

nano -c ~/HG/bin/OpenSim.ini


Edit the lines: 53 - 1164 - 1179 - 1141 - 1202
Uncomment: 356 - 773 - 778 - 782 - 787 - 795 - 1152 - 1192 - 1276 - 1313
Comment: 1310

	[Const]
53		BaseHostname = "domain.com"

	[Map]
356		GenerateMaptiles = true

	[Messaging]
773		OfflineMessageModule = "Offline Message Module V2"
778		OfflineMessageURL = ${Const|PrivURL}:${Const|PrivatePort}
782		StorageProvider = OpenSim.Data.MySQL.dll
787		MuteListModule = MuteListModule
792		ForwardOfflineGroupMessages = true

	[Groups]
1141		Enabled = true
1152		Module = "Groups Module V2"
1164		ServicesConnectorModule = "Groups HG Service Connector"
1179		GroupsServerURI = ${Const|BaseURL}:${Const|PrivatePort}
1192		MessagingModule = "Groups Messaging Module V2"
1202		MessageOnlineUsersOnly = true

	[UserProfiles]
1276		ProfileServiceURL = "${Const|BaseURL}:${Const|PublicPort}"

	[Architecture]
1310		; Include-Architecture = "config-include/Standalone.ini"
1313		Include-Architecture = "config-include/GridHypergrid.ini"

 

Edit the GridCommon.ini file

nano -c ~/HG/bin/config-include/GridCommon.ini


Edit the line19
Uncomment 16 - 49
Comment 9

	[DatabaseService]
9		; Include-Storage = "config-include/storage/SQLiteStandalone.ini";
16		StorageProvider = "OpenSim.Data.MySQL.dll"
19		ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=DB_Password;Old Guids=true;SslMode=None;"

	[Hypergrid]
49		GatekeeperURI = "${Const|BaseURL}:${Const|PublicPort}"


Firewall configuration:

sudo ufw allow "OpenSSH"
sudo ufw allow 8002/tcp
sudo ufw allow 9000/tcp
sudo ufw allow 9000:9100/udp
sudo ufw enable


If the server is behind a router:
Create a NAT for ports 8002 in TCP and 9000-9100 TCP/UDP
Example:


NAT reflection must be enable.
Example:


You need to edit the Region.ini file with the external IP (not the domain name) and internal.

InternalAddress = IP_INTERNE
ExternalHostName = IP_EXTERNE


Create a route:

iptables -t nat -A OUTPUT --dst IP_EXTERNE -p tcp --dport 9000:9100 -j DNAT --to-destination IP_INTERNE
iptables -t nat -A OUTPUT --dst IP_EXTERNE -p udp --dport 9000:9100 -j DNAT --to-destination IP_INTERNE

16174 thoughts on “Install OpenSim 0.9.2.2 in Grid mode on Ubuntu 20.04”

  1. Thursday, 11 July 2024 11:05
    For individuals who admire the charm of luxury handbags but cringe at the hefty cost, replica bags provide an appealing option. This article unravels the intricacies of the imitation bag sector, highlighting its attraction to fashion enthusiasts and luxury lovers alike. From grasping what fake purses are to suggestions for conducting savvy buys, we'll cover all you need to understand to indulge in elegance without busting the bank.
    Imitation handbags represent premium copies of luxury purses, designed to closely closely mimic the authentic versions. While they may never carry an official label name, such imitations often mirror the same design, materials, along with craftsmanship of their more costly counterparts.

    Caliber plus Skill
    https://cs.astronomy.com/members/meirdakxpu/default.aspx
    https://cs.astronomy.com/members/patricwiib/default.aspx
    https://milkyway.cs.rpi.edu/milkyway/show_user.php?userid=7270487
    https://writeablog.net/marinkwxtj/discover-the-appeal-of-fake-purses-aimed-at-fashion-lovers
    https://www.eater.com/users/baniusxipr


    Contrary to popular opinion, numerous fake bags are being made using careful focus on details. Skilled artisans utilize premium materials to guarantee that the replicas possess the comparable appearance as well as feel to the authentic designer products.

    Availability and Variety

    bags. classics.Ethical Considerations

    Although knockoff bags provide an cost-effective way to enjoy high-end fashion, it's crucial to recognize acknowledge the implications. The making and of knockoff bags may infringe upon intellectual property rights, bringing up concerns about the morality ethics of purchasing acquiring and possessing possessing them.Access to Luxury Designs

    Reasons Select Knockoff Purses?

    Knockoff purses have attracted a notable significant fan base within fashion enthusiasts aficionados for several various strong justifications. Below, we discuss why such trendy options have become grown so favored.
    https://numberfields.asu.edu/NumberFields/show_user.php?userid=3981041
    https://list.ly/rewardftqn
    https://elliotuaxn.bloggersdelight.dk/2024/07/08/explore-the-charm-with-replica-bags-aimed-at-style-aficionados/
    https://www.cheaperseeker.com/u/blandaibjq
    https://list.ly/ruvornohyz


    Cost-effectiveness

    One the most clear pros of replica replica purses is their. High-quality knockoffs can offer the same aesthetic enjoyment as genuine authentic high-end bags without the exorbitant expense.

    Imitation purses enable this possible for fashion enthusiasts to enjoy those newest luxury designs, irrespective to budget restrictions. This accessibility permits more people to participate with high couture and express one's fashion.Experimentation Without Commitment

    For those who whom enjoy experimenting with different fashion styles replica offer offer to explore new styles trends significant a long-term investment. This flexibility can be appealing appealing for fashion-forward individuals to switch up their ..To to Identify a Top-Quality Imitation Handbagplica bags.

    Navigating the replica handbag market may be challenging, but armed with proper correct knowledge, you will confidently make wise buys. Below exist several suggestions on identifying top-quality reproduction bags

    Material and Stitching

    Pay close attention to the materials used and the quality of the stitching. High-quality replicas often use genuine leather or premium synthetic alternatives and exhibit clean, precise stitching.

    Hardware & Details

    Examine the components, including closures, buckles, and logos. Top-notch replicas include components that closely resembles that of the original luxury bags, with without rough edges or poorly finished features.

    Although imitation bags are unable to legally utilize the identical trademark of the originals, some could include subtle details that imitate the design features of premium brands. Look for these elements to judge the accuracy of the copy.Popular Replica Bag Brands

    Some brands are well-known renowned due to their high-quality imitations, offering clothing aficionados a diverse range of chic fashionable choices. Here showcase a few of the best most well-liked replica purse labels.

    AAA Bags Purses is known for creating some of the top imitations available. Their bags bags feature remarkable care to detail and craftsmanship, which makes them a favorite among copy lovers.

    Purse Valley sells an extensive variety of replica purses, such as designs influenced by prestigious brands. Focusing on a focus on excellence and customer shopper satisfaction, they've have built a solid reputation in replica purse community.

    Designer Discreet specializes in creating top-notch replicas that closely mimic the originals. Their lineup lineup features handbags by famous brands, providing style fans with many ample options.

    An Art of Styling Replica Purses

    Imitation bags can seamlessly blend into any closet, letting you to create chic and trendy outfits. Below are some advice for incorporating imitation purses into your fashion repertoire.Handling with Care

    Combining with Timeless Attire

    A traditional attire, such as a little black dress or a fitted costume, can be elevated with a well-chosen imitation purse. Opt for enduring styles that complement your ensemble and add a hint of class.

    Blending High plus Casual Wear

    Combine top-notch fake purses together with affordable style pieces to create a balanced and trendy appearance. This strategy permits you to highlight your taste at the same time staying frugal.

    Embellishing by Assurance

    When pairing imitation bags, confidence is key. Manage your replica purse with the same consideration and dignity as you would a authentic designer item, and it will elevate your entire appearance.

    Caring for Fake Bag

    Proper care and maintenance are necessary to maintain your replica handbag being its finest. Adhere to these hints to maintain its longevity.

    Regular Maintenance

    Wipe your imitation purse frequently with a gentle fabric and mild cleaner. Refrain from strong cleaners that can ruin the material or shade.

    Saving Hints

    Keep your fake bag in a cool, dry area, distant from direct sunlight. Employ dust covers or mild cloths to safeguard it from dirt and scratches.

    Treat your replica purse carefully, keeping away from rough surfaces as well as overstuffing. This will assist preserve the form while also preventing potential harm.

    Imitation bags offer a affordable alternative to designer brand pieces without compromising fashion or durability. By using the styling & maintenance, these can effortlessly integrate into any any fashion closet, making them a popular option among style enthusiasts. Regardless if you’re looking for the classic look or the fashionable statement-making item, there're numerous well-known replica purse labels that offer premium quality options to suit every preference. So go ahead and include some stylish replicas into your collection - no one will be able to notice a difference.The Social Aspect of Replica Bags

    Handle your own replica bag with proper care, by avoiding overloading it by heavy items. This will help maintain the form & avoid wearing and tearing.

    Fake bags are not concerning style; these also foster a sense regarding camaraderie among enthusiasts. Here, you examine the social aspects regarding owning and talking about replica handbags.Online Communities

    Numerous digital groups and discussion boards are dedicated to the topic of copy purses, in which fans exchange hints, critiques, as well as recommendations. These websites provide valuable insights and support for individuals entering the replica marketplace.In-Person Meetups

    Some replica handbag lovers arrange face-to-face meetups in order to showcase their collections and discuss their love for fashion. Such meetings offer chances to network with similar individuals and share ideas.Influencers and Reviews

    Influencers and bloggers often evaluate fake handbags, offering genuine opinions and contrasts to genuine brand-name items. Following such evaluations can assist one in making informed choices regarding your purchases.Legal and Ethical Considerations

    Grasping the lawful as well as principled aspects concerning acquiring replica bags is crucial for making informed selections. Here, we cover some common issues.Intellectual Property Rights

    Fake purses might infringe on the intellectual property rights of premium companies. Be mindful of the juridical implications and likely risks associated with buying and having replicas.Ethical Shopping

    Think about the moral implications of endorsing the knockoff bag market. Although it offers cheap alternatives, it may also contribute to exploitative labor conditions and environmental concerns.Making Informed Choices

    Future Developments regarding Replica Bags

    The replica bag industry is constantly constantly evolving, with novel styles and advancements emerging. Here, we examine a few possible future developments.

    Sustainable ComponentsConclusion

    Since sustainability grows as a rising issue, the replica purse industry could transition in the direction of using green materials. This transition might draw to green-minded customers and decrease the industry's ecological footprint.

    State-of-the-art Innovation

    Progress in tech, like three-dimensional printing, could revolutionize the creation of copy handbags. These innovations may produce even higher-quality copies that are difficult to tell apart from the real ones.

    Shifting Customer Perspectives

    Customer perspectives on imitation purses might continue to evolve, with more embrace and appreciation for high-quality imitations. This transition could drive demand and affect field patterns.

    Replica bags offer a stylish and affordable alternative for fashion enthusiasts and luxury lovers. By understanding the intricacies of the replica bag market, you can make informed choices and enjoy the benefits of high-quality imitations. Whether you're drawn to the affordability, variety, or the ability to experiment with different styles, replica bags provide a gateway to the world of luxury fashion.

    Ready to explore the world of replica bags? Join our community of fashion enthusiasts and start your stylish journey today!
    xhttps://www.adirs-bookmarks.win/discover-a-global-of-notable-craftsmanship-and-consciousness-to-element-with-our-collection-of-replica-watches
    http://images.google.vu/url?q=http://www.wykop.pl/remotelink/?url=https://imena.nalench.com/user/rezrymzmht
    http://link.chatujme.cz/redirect?url=https://forum.ressourcerie.fr/index.php?qa=user&qa_1=wychanfdkl
    http://images.google.vu/url?q=http://www.wykop.pl/remotelink/?url=http://www.rohitab.com/discuss/user/2237825-axminsfzbj/
    https://zzb.bz/2UFwB
  2. Thursday, 11 July 2024 13:42
    Привет!
    Мы предлагаем документы ВУЗов, которые находятся на территории всей России. Можно приобрести качественно сделанный диплом за любой год, в том числе документы старого образца СССР. Дипломы и аттестаты делаются на "правильной" бумаге высшего качества. Это дает возможность делать настоящие дипломы, которые невозможно отличить от оригинала. Они заверяются необходимыми печатями и подписями.
    Приобрести диплом о высшем образовании.
    https://w8xb6fkoy.ttblogs.com/7791047/%D0%9B%D0%B5%D0%B3%D0%BA%D0%BE-%D0%BF%D1%80%D0%B8%D0%BE%D0%B1%D1%80%D0%B5%D1%82%D0%B0%D0%B5%D0%BC-%D0%B0%D1%82%D1%82%D0%B5%D1%81%D1%82%D0%B0%D1%82-%D0%B2-%D0%BB%D1%83%D1%87%D1%88%D0%B5%D0%BC-%D0%BE%D0%BD%D0%BB%D0%B0%D0%B9%D0%BD-%D0%BC%D0%B0%D0%B3%D0%B0%D0%B7%D0%B8%D0%BD%D0%B5-russian-diplom
    https://www.bideew.com/read-blog/7081
    https://sonnick84.pointblog.net/%D0%9A%D0%B0%D0%BA-%D0%BC%D0%BE%D0%B6%D0%BD%D0%BE-%D0%B1%D1%8B%D1%81%D1%82%D1%80%D0%BE-%D0%BA%D1%83%D0%BF%D0%B8%D1%82%D1%8C-%D0%B4%D0%B8%D0%BF%D0%BB%D0%BE%D0%BC-%D0%B2-%D0%BE%D0%BD%D0%BB%D0%B0%D0%B9%D0%BD-%D0%BC%D0%B0%D0%B3%D0%B0%D0%B7%D0%B8%D0%BD%D0%B5-69472426
    https://rst.adk.audio/company/personal/user/259/forum/message/1936/1968/
    https://gtafaccoes.net/forum/index.php?/gallery/image/8-%D0%BF%D1%80%D0%B8%D0%BE%D0%B1%D1%80%D0%B5%D1%82%D0%B0%D0%B5%D0%BC-%D0%B4%D0%BE%D0%BA%D1%83%D0%BC%D0%B5%D0%BD%D1%82%D1%8B-%D0%B2-%D0%BB%D1%83%D1%87%D1%88%D0%B5%D0%BC-%D0%B8%D0%BD%D1%82%D0%B5%D1%80%D0%BD%D0%B5%D1%82-%D0%BC%D0%B0%D0%B3%D0%B0%D0%B7%D0%B8%D0%BD%D0%B5-%D0%BF%D0%BE-%D0%B2%D1%8B%D0%B3%D0%BE%D0%B4%D0%BD%D0%BE%D0%B9-%D1%86%D0%B5%D0%BD%D0%B5/

    Успешной учебы!
  3. Thursday, 11 July 2024 13:42
    Привет!
    Мы можем предложить документы техникумов, которые расположены на территории всей РФ. Вы можете купить качественно сделанный диплом от любого заведения, за любой год, указав подходящую специальность и хорошие оценки за все дисциплины. Документы выпускаются на "правильной" бумаге самого высшего качества. Это дает возможности делать настоящие дипломы, не отличимые от оригинала. Документы будут заверены всеми требуемыми печатями и штампами.
    Купить диплом ВУЗа.
    https://as3dos28g.blogdanica.com/28191058/%D0%91%D1%8B%D1%81%D1%82%D1%80%D0%BE-%D0%B7%D0%B0%D0%BA%D0%B0%D0%B7%D1%8B%D0%B2%D0%B0%D0%B5%D0%BC-%D0%B0%D1%82%D1%82%D0%B5%D1%81%D1%82%D0%B0%D1%82-%D0%B2-%D0%BC%D0%B0%D0%B3%D0%B0%D0%B7%D0%B8%D0%BD%D0%B5-russian-diplom
    http://permn.ru/blogs/1/zakazyvaem-diplom-v-luchshem-internetmagazine-po-komfortnoy-tsene.php
    https://naya.social/read-blog/154
    https://www.gamerlaunch.com/community/users/blog/6443244/2286742/%D0%BF%D1%80%D0%B8%D0%BE%D0%B1%D1%80%D0%B5%D1%81%D1%82%D0%B8-%D0%B4%D0%B8%D0%BF%/?gid=535
    https://asepbook.com/read-blog/3797

    Успешной учебы!
  4. Thursday, 11 July 2024 13:42
    Привет, друзья!
    Мы готовы предложить документы ВУЗов, расположенных на территории всей РФ. Вы можете приобрести качественно сделанный диплом от любого учебного заведения, за любой год, указав необходимую специальность и оценки за все дисциплины. Документы выпускаются на бумаге высшего качества. Это позволяет делать настоящие дипломы, которые не отличить от оригинала. Документы заверяются необходимыми печатями и подписями.
    Заказать диплом о высшем образовании.
    https://myteana.ru/forums/index.php?autocom=gallery&req=si&img=5114
    https://renaissance.mn.co/posts/61828789
    https://wiki.diamondrp.ru/index.php?title=%D0%92%D1%8B%D0%B3%D0%BE%D0%B4%D0%BD%D1%8B%D0%B5_%D1%86%D0%B5%D0%BD%D1%8B_%D0%B8_%D0%BF%D1%80%D0%B5%D0%BA%D1%80%D0%B0%D1%81%D0%BD%D0%BE%D0%B5_%D0%BA%D0%B0%D1%87%D0%B5%D1%81%D1%82%D0%B2%D0%BE_-_%D0%BF%D0%BE%D0%BA%D1%83%D0%BF%D0%B0%D0%B9_%D0%B4%D0%BE%D0%BA%D1%83%D0%BC%D0%B5%D0%BD%D1%82%D1%8B_%D0%BE%D0%BD%D0%BB%D0%B0%D0%B9%D0%BD!
    http://k96586v0.beget.tech/component/comprofiler/pluginclass/cbblogs.html?action=blogs&func=show&id=147
    http://es-presto.ru/community/groups/0-0/183-zakazyvaem-diplom-v-proverennom-internet-magazine-po-vygodnoj-tsene

    Хорошей учебы!
  5. Thursday, 11 July 2024 13:42
    Привет, друзья!
    Мы можем предложить документы техникумов, расположенных в любом регионе РФ. Можно заказать качественный диплом от любого заведения, за любой год, включая сюда документы старого образца СССР. Дипломы и аттестаты делаются на "правильной" бумаге высшего качества. Это позволяет делать государственные дипломы, которые невозможно отличить от оригинала. Они заверяются необходимыми печатями и подписями.
    Заказать диплом о высшем образовании.
    https://d.mwoff.org/index.php?/gallery/image/116-%D0%B2%D1%8B%D0%B3%D0%BE%D0%B4%D0%BD%D1%8B%D0%B5-%D1%86%D0%B5%D0%BD%D1%8B-%D0%B8-%D0%BF%D1%80%D0%B5%D0%BA%D1%80%D0%B0%D1%81%D0%BD%D0%BE%D0%B5-%D0%BA%D0%B0%D1%87%D0%B5%D1%81%D1%82%D0%B2%D0%BE-%D0%BF%D0%BE%D0%BA%D1%83%D0%BF%D0%B0%D0%B9-%D0%B4%D0%B8%D0%BF%D0%BB%D0%BE%D0%BC%D1%8B-%D0%BE%D0%BD%D0%BB%D0%B0%D0%B9%D0%BD/
    https://rebornrpofficial.com/index.php?/files/file/15-%D0%BF%D0%BE%D0%BA%D1%83%D0%BF%D0%B0%D0%B5%D0%BC-%D0%B4%D0%B8%D0%BF%D0%BB%D0%BE%D0%BC-%D0%B2-%D0%BB%D1%83%D1%87%D1%88%D0%B5%D0%BC-%D0%B8%D0%BD%D1%82%D0%B5%D1%80%D0%BD%D0%B5%D1%82-%D0%BC%D0%B0%D0%B3%D0%B0%D0%B7%D0%B8%D0%BD%D0%B5-%D0%BF%D0%BE-%D0%BA%D0%BE%D0%BC%D1%84%D0%BE%D1%80%D1%82%D0%BD%D0%BE%D0%B9-%D1%86%D0%B5%D0%BD%D0%B5/
    https://7n9jj7gjd.actoblog.com/28836681/%D0%94%D0%B5%D1%82%D0%B0%D0%BB%D1%8C%D0%BD%D0%BE%D0%B5-%D0%BE%D0%BF%D0%B8%D1%81%D0%B0%D0%BD%D0%B8%D0%B5-%D0%B7%D0%B0%D0%BA%D0%B0%D0%B7%D0%B0-%D0%B4%D0%B8%D0%BF%D0%BB%D0%BE%D0%BC%D0%B0-%D0%B2-%D0%B8%D0%B7%D0%B2%D0%B5%D1%81%D1%82%D0%BD%D0%BE%D0%BC-%D0%BE%D0%BD%D0%BB%D0%B0%D0%B9%D0%BD-%D0%BC%D0%B0%D0%B3%D0%B0%D0%B7%D0%B8%D0%BD%D0%B5
    https://biomedia.pro/club/user/112304/forum/message/3795/13277/
    https://chrstms.ru/club/user/11503/blog/11073/

    Хорошей учебы!
  6. Thursday, 11 July 2024 13:45
    Online work has transformed the modern workplace, offering adaptability and convenience that traditional office environments typically lack. It enables individuals to work from anywhere with an internet connection, removing geographical barriers and allowing companies to tap into a global talent pool. This change has led to a rise in off-site and freelance opportunities, enabling workers to balance their professional and personal lives more successfully. Additionally, online work can produce increased productivity and job satisfaction, as employees have more control over their schedules and work environments. However, it also poses challenges such as maintaining work-life boundaries, securing effective communication, and managing time efficiently. Overall, online work is a revolutionary force, reconfiguring the way we think about employment and productivity in the digital age.
  7. Thursday, 11 July 2024 13:47
    https://telegra.ph/Dostavka-tovarov-iz-SSHA-v-Rossiyu-07-08 доставка товаров из сша.
    доставка товаров из сша в россию https://telegra.ph/Dostavka-tovarov-iz-SSHA-v-Rossiyu-07-08 .
    посредники по доставке из сша https://telegra.ph/Dostavka-tovarov-iz-SSHA-v-Rossiyu-07-08 .
    посредники по доставке из сша в россию https://telegra.ph/Dostavka-tovarov-iz-SSHA-v-Rossiyu-07-08 .
    https://telegra.ph/Dostavka-tovarov-iz-SSHA-v-Rossiyu-07-08 мейлфорвадеры доставка из сша.
    https://telegra.ph/Dostavka-tovarov-iz-SSHA-v-Rossiyu-07-08 мейлфорвадеры доставка из сша в россию.
    https://telegra.ph/Dostavka-tovarov-iz-SSHA-v-Rossiyu-07-08 доставка посылок из сша.
    доставка посылок из сша в россию https://telegra.ph/Dostavka-tovarov-iz-SSHA-v-Rossiyu-07-08 .
    доставка посылок из америки https://telegra.ph/Dostavka-tovarov-iz-SSHA-v-Rossiyu-07-08 .
    доставка товаров из америки https://telegra.ph/Dostavka-tovarov-iz-SSHA-v-Rossiyu-07-08
    доставка товаров из америки в россию https://telegra.ph/Dostavka-tovarov-iz-SSHA-v-Rossiyu-07-08
  8. Thursday, 11 July 2024 14:41
    https://telegra.ph/Dostavka-tovarov-iz-SSHA-v-Rossiyu-07-08 доставка товаров из сша.
    доставка товаров из сша в россию https://telegra.ph/Dostavka-tovarov-iz-SSHA-v-Rossiyu-07-08 .
    посредники по доставке из сша https://telegra.ph/Dostavka-tovarov-iz-SSHA-v-Rossiyu-07-08 .
    посредники по доставке из сша в россию https://telegra.ph/Dostavka-tovarov-iz-SSHA-v-Rossiyu-07-08 .
    https://telegra.ph/Dostavka-tovarov-iz-SSHA-v-Rossiyu-07-08 мейлфорвадеры доставка из сша.
    https://telegra.ph/Dostavka-tovarov-iz-SSHA-v-Rossiyu-07-08 мейлфорвадеры доставка из сша в россию.
    https://telegra.ph/Dostavka-tovarov-iz-SSHA-v-Rossiyu-07-08 доставка посылок из сша.
    доставка посылок из сша в россию https://telegra.ph/Dostavka-tovarov-iz-SSHA-v-Rossiyu-07-08 .
    доставка посылок из америки https://telegra.ph/Dostavka-tovarov-iz-SSHA-v-Rossiyu-07-08 .
    доставка товаров из америки https://telegra.ph/Dostavka-tovarov-iz-SSHA-v-Rossiyu-07-08
    доставка товаров из америки в россию https://telegra.ph/Dostavka-tovarov-iz-SSHA-v-Rossiyu-07-08
  9. Thursday, 11 July 2024 15:05
    Привет!
    Где заказать диплом специалиста?
    Заказать документ о получении высшего образования вы имеете возможность у нас в столице. Мы предлагаем документы об окончании любых университетов Российской Федерации. Вы сможете получить диплом по любой специальности, включая документы СССР. Даем 100% гарантию, что в случае проверки документа работодателем, никаких подозрений не возникнет.
    http://cahaya.my.id/дипломы-для-тех-кто-ценит-свое-время-и
    Хорошей учебы!
  10. Thursday, 11 July 2024 15:59
    Добрый день!
    Где заказать диплом по нужной специальности?
    Мы предлагаем документы ВУЗов, которые находятся в любом регионе Российской Федерации. Вы можете купить диплом за любой год, включая сюда документы старого образца. Дипломы и аттестаты выпускаются на бумаге самого высокого качества. Это дает возможность делать государственные дипломы, не отличимые от оригиналов. Документы будут заверены всеми необходимыми печатями и штампами.
    adr.my.id/read-blog/1603_купить-диплом-в-любом-городе-россии.html
  11. Thursday, 11 July 2024 17:25
    PrintService - ваш лучший партнёр в мире четкой печати! Мы оказываем качественную заправку лазерного принтера в Киеве и Вышгороде.

    Наши мастера используют в работе высококачественные материалы для обеспечения оптимального качества печати. Звоните, чтобы наполнить картриджи в Киеве и Вышгороде для того чтоб убедится в эффективности наших услуг! Ваше удовлетворение - наш главный приоритет.

    Картриджи заправка - https://printer.org.ua/ru/zapravka-kartridzhej/
  12. Thursday, 11 July 2024 18:07
    Best cardsharing service, iptv</b> cheap price <b>only 0.99$
    CARDSHARING
    IPTV 0.99$

    Стабильный качественный
    кардшаринг +
    IPTV
    по самым низким ценам в сети, всего 0.99$
  13. Thursday, 11 July 2024 21:14
    Привет, друзья!
    Где купить диплом специалиста?
    Приобрести документ о получении высшего образования можно у нас в столице. Мы предлагаем документы об окончании любых ВУЗов Российской Федерации.
    Мы можем предложить дипломы любых профессий по доступным ценам. Стоимость будет зависеть от выбранной специальности, года выпуска и ВУЗа. Всегда стараемся поддерживать для заказчиков адекватную ценовую политику.
    https://freelance.habr.com/freelancers/hnfmrfdtg
    Удачи!
  14. Thursday, 11 July 2024 23:40
    Привет!
    Заказать диплом ВУЗа.
    Мы предлагаем заказать диплом в высочайшем качестве, неотличимый от оригинального документа без участия специалиста высокой квалификации со сложным оборудованием.
    Где купить диплом по нужной специальности?
    http://flashtest.80lvl.ru/viewtopic.php?f=3&amp;t=1882
    Хорошей учебы!