I guess that I may download samba via brew
, not use the default samba of mac.
Maybe, I should share the folder under system directory on Mac with VM debian.
I just want to make that enable, that is: Creating the project under the VM
Guest VM Debian, and share the project with Host macOS, edit and change code
under the project in Host macOS, and run the project in the Guest VM Debian.
What's the status of the plan? Guest VM Debian do successfully access the Samba
server on the Host macOS via "smb://host.macos.ip.address:139/" or
"smb://host.macos.ip.address:445/" or "smb://host.macos.ip.address/", that
means creating the project under Host macOS,
editing and changing the code under Guest VM Debian via sharing folder from Host
macOS using "host.macos.ip.address:port". But I need Host macOS to access the
Samba server under VM Debian, that do not work until now!
Even "smb://127.0.0.1:139_port-forwarding_to-target-port/" or
"smb://127.0.0.1:445_port-forwarding_to-target-port/".
The new trouble is that how to set port forward for Host macOS to access the
Guest VM Debian.
If this way do not work, I will just let her go!
Just log in Guest VM Debian via SSH on Host macOS, and use VIM to edit and
change the code under directory in the Guest VM Debian, and run that into
Debian, then just use git to push remote repository.
Though I can transfer folders or files between VM and Host via Share Folder,
but if the VM was at the remote or cloud? So, just use Samba or others.
The refer of connecting samba server:
1.Man-machine interactively access samba server(Chinese Blog).
3.How to set the sharing of smaba for smart cop. on Ubuntu16.04?(Chinese Blog).
4.(GitHub Gist)Mount samba sharing folder with local directory.
In all, there are four troubles occurring for me during VM debian accessing
samba server on Host macOS until July 24 2022 PM5:45 EST.
Notice: restart the service of samba server on Debian by
sudo service smbd restart
or
sudo /etc/init.d/smbd restart
connection disconnected
Target: I'm glad to login samba server on Host macOS using user name and
password under VM debian.
Operate command on terminal:
smbclient //192.168.1.2/sharewithdebian -U sharewithdebian%share_user_pass
Terminal output:
Try "help" to get a list of possible commands.
smb: \> SMBecho failed (NT_STATUS_CONNECTION_DISCONNECTED). The connection is disconnected now
Trouble description:
smb echo failed nt_status_connection_disconnected
Matters: I do not know.
Fixed or not: Not fix.
not support
Target: I want to checkout which port does the samba server on macOS listening
during VM debian accessing samba server on macOS.
Operate command on terminal:
smbclient -L 192.168.1.2 -p 139 -U sharewithdebian
Terminal output:
do_connect: NetBIOS support disabled, unable to connect
do_connect: Connection to 192.168.1.2 failed (Error NT_STATUS_NOT_SUPPORTED)
Trouble description:
error nt_status_not_support
Matters: The listening port of Samba server under Host macOS is not 139
, but
is 445
, please use smbclient -L 192.168.1.2 -p 445 -U sharewithdebian
.
Fixed or not: Fixed.
login failure
Target: I'm will to login the sever of samba on Host macOS.
Operate command on terminal:
smbclient //192.168.1.1/sharewithdebian -U sharewithdebian%your_share_pass --signing=off
Terminal output:
session setup failed: NT_STATUS_LOGON_FAILURE
Trouble description:
session setup failed: nt_status_logon_failure
Matters: can not login forever! May be not the below user name and password.
Or, the password of samba user is false or is not the samba user or no user
currently.
Updated matters: the target IP is total false. :)
Fixed or not: Fixed.
NetBIOS over TCP disabled -- no workgroup available.
Target: I'm going to list the some one user's samba server sharing folder.
Operate command on terminal:
smbclient -L 192.168.1.2 -p 445 -U sharewithdebian
Terminal output:
Enter WORKGROUP\sharewithdebian's password:
Sharename Type Comment
--------- ---- -------
IPC$ IPC
sharewithdebian Disk
NetBIOS over TCP disabled -- no workgroup available
Trouble description:
NetBIOS over TCP disabled -- no workgroup available
Matters: I do not now until now!
Fixed or not: Not fix.
Two ways:
1.Try to login samba client on VM Debian via terminal, and access to the
services of samba server on Host macOS.
2.Try to login samba client on Host macOS via terminal, and access to the
services of samba server on VM Debian.
The 1.1
try to access the server of Host macOS on Guest VM Debian's terminal
command by smbclient -L 192.168.1.n/sharewithdebian -p 445 -U sharewithdebian
or sudo mount -t cifs //192.168.1.2/sharewithdebian /media/share_from_macos -o username=sharewithdebian,password=pass,vers=2.0
.
The share folder of Host macOS's server is under:
/Users/Shared/sharewithdebian
, and user name sharewithdebian
, user password
user_password
, accessed by /host.machine.macos.ip
with port 445
.
The received folder of Guest VM Debian is under
/media/samba_share_folder_from_mac
which mounted with that share folder.
Notice:-------BEGIN------------------------------------------------------------
Accessing the server of samba on Host macOS from VM debian use port 445
. Just
use this code to check:
smbclient -L 192.168.1.2 -p 445 -U sharewithdebian
and you got:
Enter WORKGROUP\sharewithdebian's password:
Sharename Type Comment
--------- ---- -------
IPC$ IPC
sharewithdebian Disk
Reconnecting with SMB1 for workgroup listing.
do_connect: Connection to 192.168.1.2 failed (Error NT_STATUS_CONNECTION_REFUSED)
Unable to connect with SMB1 -- no workgroup available
Just use adding the below code to /etc/samba/smb.conf
at Linux:
# The below configuration solve the problem(protocol negotiation failed:
# NT_STATUS_CONNECTION_RESET or protocol negotiation failed:
# NT_STATUS_IO_TIMEOUT or protocol negotiation failed:
# NT_STATUS_INVALID_NETWORK_RESPONSE).
# Adding the protocol configuration for the client and server settings
client min protocol = CORE
client max protocol = SMB3
after add the upstairs to fix some of the catch, the ray case also catch:
Enter WORKGROUP\sharewithdebian's password:
Sharename Type Comment
--------- ---- -------
IPC$ IPC
sharewithdebian Disk
NetBIOS over TCP disabled -- no workgroup available
matter: I do not know!
The trouble became to
(Trouble-4: NetBIOS over TCP disabled -- no workgroup available
).
if use this code to check:
smbclient -L 192.168.1.2 -p 139 -U sharewithdebian
then you got:
do_connect: Connection to 192.168.1.2 failed (Error NT_STATUS_CONNECTION_REFUSED)
Just use adding the below code to /etc/samba/smb.conf
at Linux:
# The below configuration solve the problem(protocol negotiation failed:
# NT_STATUS_CONNECTION_RESET or protocol negotiation failed:
# NT_STATUS_IO_TIMEOUT or protocol negotiation failed:
# NT_STATUS_INVALID_NETWORK_RESPONSE).
# Adding the protocol configuration for the client and server settings
client min protocol = CORE
client max protocol = SMB3
after add the upstairs to fix some of the catch, the ray case also catch:
do_connect: NetBIOS support disabled, unable to connect
do_connect: Connection to 192.168.1.2 failed (Error NT_STATUS_NOT_SUPPORTED)
The catch became to
(Trouble-2: "not support"
).
So the port of the client of smaba using on VM Debian is 445
, which is to
access the services of the smaba server on Host macOS.
-------------------------------------------------END: Notice-------------------
smbclient //192.168.1.1/sharewithdebian -U sharewithdebian%your_share_pass --signing=off
Catch: session setup failed: NT_STATUS_LOGON_FAILURE
.
What's the matter: may be the password is false. I do not know! Or, the
password of samba user is false or is not the samba user or no user currently.
(Trouble-3: "login failure"
).
Fixed.
But,
IP
is totally false. 192.168.1.1
changing to 192.168.1.2
.
then, try:
smbclient //192.168.1.2/sharewithdebian -U sharewithdebian%your_share_pass --signing=off
then, catch:
Enter WORKGROUP\sharewithdebian's password:
Try "help" to get a list of possible commands.
smb: \> SMBecho failed (NT_STATUS_CONNECTION_DISCONNECTED). The connection is disconnected now
matter: connection disconnected while login samba user account via connecting
samba server.
The trouble became to
(Trouble-1: "connection disconnected"
).
Another, try case:
smbclient //192.168.1.1/sharewithdebian -U sharewithdebian%pass --signing=off
another catch: session setup failed: NT_STATUS_LOGON_FAILURE
.
Also, because the password is false. Or, the password of samba user is false or
is not the samba user or no user currently.
(Trouble-3: "login failure"
).
Fixed.
But,
IP
is totally false. 192.168.1.1
changing to 192.168.1.2
.
then, try:
smbclient //192.168.1.2/sharewithdebian -U sharewithdebian%your_share_pass --signing=off
then, catch:
Enter WORKGROUP\sharewithdebian's password:
Try "help" to get a list of possible commands.
smb: \> SMBecho failed (NT_STATUS_CONNECTION_DISCONNECTED). The connection is disconnected now
matter: connection disconnected while login samba user account via connecting
samba server.
The trouble became to
(Trouble-1: "connection disconnected"
).
smbclient -L //192.168.1.2
Catch:
Enter WORKGROUP\foruo's password:
session setup failed: NT_STATUS_LOGON_FAILURE
What's the matter: can not login forever! Or, the password of samba user is
false or is not the samba user or no user currently.
(Trouble-3: "login failure"
).
May be not the below user name and password.
Fixed!
Try adding the -U sharewithdebian
.
Then, trouble became to
(Trouble-1: "connection disconnected"
).
smbclient //192.168.1.2/sharewithdebian -U sharewithdebian%share_user_pass
Catch:
Try "help" to get a list of possible commands.
smb: \> SMBecho failed (NT_STATUS_CONNECTION_DISCONNECTED). The connection is disconnected now
What's the matter: occurs error during linking! Or, connection disconnected while
login samba user account via connecting samba server.
(Trouble-1: "connection disconnected"
)
No fix!
Another, try case:
smbclient //192.168.1.2/sharewithdebian -U sharewithdebian%pass
Catch:
Try "help" to get a list of possible commands.
smb: \> SMBecho failed (NT_STATUS_CONNECTION_DISCONNECTED). The connection is disconnected now
Another with what's the matter: occurs that accidentally interrupt during
connecting. Or, connection disconnected while login samba user account via
connecting samba server.
(Trouble-1: "connection disconnected"
).
No fix!
smbclient -L //192.168.1.2 -U sharewithdebian --signing-off
Catch:
Enter WORKGROUP\sharewithdebian's password:
Sharename Type Comment
--------- ---- -------
IPC$ IPC
sharewithdebian Disk
Reconnecting with SMB1 for workgroup listing.
do_connect: Connection to 192.168.1.2 failed (Error NT_STATUS_CONNECTION_REFUSED)
Unable to connect with SMB1 -- no workgroup available
What's the matter: protocol negotiation failed.
Fixed.
Just use adding the below code to /etc/samba/smb.conf
at Linux:
# The below configuration solve the problem(protocol negotiation failed:
# NT_STATUS_CONNECTION_RESET or protocol negotiation failed:
# NT_STATUS_IO_TIMEOUT or protocol negotiation failed:
# NT_STATUS_INVALID_NETWORK_RESPONSE).
# Adding the protocol configuration for the client and server settings
client min protocol = CORE
client max protocol = SMB3
after add the upstairs to fix some of the catch, the ray case also catch:
Enter WORKGROUP\sharewithdebian's password:
Sharename Type Comment
--------- ---- -------
IPC$ IPC
sharewithdebian Disk
NetBIOS over TCP disabled -- no workgroup available
matter: I do not know!
The trouble became to
(Trouble-4: NetBIOS over TCP disabled -- no workgroup available
).
Another,try case:
smbclient -L //192.168.1.2 -U sharewithdebian --signing-off
Another catch:
Enter WORKGROUP\sharewithdebian's password:
Sharename Type Comment
--------- ---- -------
IPC$ IPC
sharewithdebian Disk
Reconnecting with SMB1 for workgroup listing.
do_connect: Connection to 192.168.1.2 failed (Error NT_STATUS_CONNECTION_REFUSED)
Unable to connect with SMB1 -- no workgroup available
Another with what's the matter: protocol negotiation failed.
Fixed.
Just use adding the below code to /etc/samba/smb.conf
at Linux:
# The below configuration solve the problem(protocol negotiation failed:
# NT_STATUS_CONNECTION_RESET or protocol negotiation failed:
# NT_STATUS_IO_TIMEOUT or protocol negotiation failed:
# NT_STATUS_INVALID_NETWORK_RESPONSE).
# Adding the protocol configuration for the client and server settings
client min protocol = CORE
client max protocol = SMB3
after add the upstairs to fix some of the catch, the ray case also catch:
Enter WORKGROUP\sharewithdebian's password:
Sharename Type Comment
--------- ---- -------
IPC$ IPC
sharewithdebian Disk
NetBIOS over TCP disabled -- no workgroup available
matter: I do not know!
The trouble became to
(Trouble-4: NetBIOS over TCP disabled -- no workgroup available
).
Notice: -----------------------------------------------------------------------
If you want to mount the share folder in the current VM, please just use
cifs-utils via sudo apt install cifs-utils
for Debian/Ubuntu.
----------------------------------------------------------------------- :Notice
(All mounting the share folder from Host macOS on Guest VM Debian will miss
after the Guest VM Debian restart or reboot, so I need to let that
automatically load at Guest. Those combat cases try to access the server of
macOS via the terminal command of Guest VM Debian.)
mount -t cifs //192.168.1.2/sharewithdebian /media/share/ -o username=sharewithdebian,password=pass,nounix,sec=ntlmssp
Catch: mount: /media/share: must be superuser to use mount.
.
What's the matter: need root power!
Fixed! using:
sudo mount -t cifs //192.168.1.2/sharewithdebian /media/share/ -o username=sharewithdebian,password=pass,nounix,sec=ntlmssp
sudo mount -t cifs //192.168.1.2/sharewithdebian /media/share/ -o username=sharewithdebian,password=pass,nounix,sec=ntlmssp
Catch: mount: /media/share: mount(2) system call failed: Network is unreachable.
.
What's the matter: I do not know!
Maybe the internet has some false.
try the case again, and catch:
[sudo] password for foruo:
Couldn't chdir to /media/share/: No such file or directory
matter: The sharing folder //ip/sharing_directory
mounted false dir while
that dir do not exit. Changing to /media/share_from_target
.
Catch: ``.
What's the matter: Successfully mounted!!!
Fixed.
sudo mount -t cifs //192.168.1.2/sharewithdebian /media/share/ -o username=sharewithdebian,password=pass,nounix,sec=ntlmssp
Catch: [sudo] password for foruo:
.
What's the matter: Successfully mounted!!!
Another, try case:
sudo mount -t cifs //192.168.1.2/sharewithdebian /media/share_from_macos -o username=sharewithdebian,password=pass,vers=2.0
Catch: ``.
What's the matter: Successfully mounted!!!
One, try case:
sudo mount -t cifs -o username=sharewithdebian,password=pass //192.168.1.2/sharewithdebian /media/share_from_macos
Catch: ``.
What's the matter: Successfully mounted!!!
Two, try case:
sudo mount -t cifs //192.168.1.2/sharewithdebian /media/share_from_macos -osec=ntlmv2,domain=MYDONMAIN,username=sharewithdebian,password=pass
Catch: ``.
What's the matter: Successfully mounted!!!
Three, try case:
sudo mount -t cifs //192.168.1.2/sharewithdebian /media/share_from_macos -osec=ntlmv2,domain=MYDOMAIN,username=share,password=pass
Catch: mount: /media/share_from_macos: cannot mount //192.168.1.2/sharewithdebian read-only.
.
What's the matter: I do not know!
Four, try case:
sudo mount -t cifs //192.168.1.2/sharewithdebian /media/share_from_macos
Catch:
[sudo] password for foruo:
mount: /media/share_from_macos: bad option; for several filesystems (e.g. nfs, cifs) you might need a /sbin/mount.<type> helper program.
What's the matter: I do not know!
Five, try case:
sudo mount -t cifs //192.168.1.2/sharewithdebian /media/share_from_macos -o username=sharewithdebian,password=pass,vers=2.0
Catch: [sudo] password for foruo:
.
What's the matter: Successfully mounted!!!
Six, try case:
smb://192.168.1.2
Catch: zsh: no such file or directory: smb://192.168.1.2
.
What's the matter: I do not know!
Seven, try case:
sudo mount -t cifs //192.168.1.2/sharewithdebian HD /media/share_from_debian -o username=sharewithdebian,noserverino
Catch:
[sudo] password for foruo:
mount: bad usage
Try 'mount --help' for more information.
What's the matter: I do not know!
Eight, try case:
sudo mount -t cifs //192.168.1.2/sharewithdebian /media/share_from_macos/ -rw -o username=sharewithdebian,password=pass,nounix,sec=ntlmssp
Catch:``.
What's the matter: Successfully mounted!!!
Nine, try case:
sudo mount -t cifs -o username=sharewithdebian //192.168.1.2/sharewithdebian /media/share_from_macos
Catch:
[sudo] password for foruo:
mount: /media/share_from_macos: cannot mount //192.168.1.2/sharewithdebian read-only.
What's the matter: Successfully mounted!!!
Ten, try case:
smbclient //samba_hostname_or_server_ip/share_name -U username
Catch:
Enter WORKGROUP\sharewithdebian's password:
Try "help" to get a list of possible commands.
smb: \> SMBecho failed (NT_STATUS_CONNECTION_DISCONNECTED). The connection is disconnected now
What's the matter: occurs that accidentally interrupt during connecting. Or,
connection disconnected while login samba user account via connecting samba
server.
(Trouble-1: "connection disconnected"
)
Try this case again, catch that again!
Eleven, try case:
sudo mount -t cifs -o username=username //samba_hostname_or_server_ip/sharename /mnt/smbmount
Catch:
[sudo] password for user_debian:
Password for username@//samba_hostname_or_server_ip/sharename:
What's the matter: Successfully mounted!!!
Twelve, try case:
smbclient -L 192.168.1.2
Catch:
Enter WORKGROUP\foruo's password:
session setup failed: NT_STATUS_LOGON_FAILURE
What's the matter: I do not know! Or, the password of samba user is false or is
not the samba user or no user currently.
(Trouble-3: "login failure"
).
Fixed! See ###### 7.Case00070X3
.
Thirteen, try case:
smbclient //192.168.1.2/sharewithdebian
Catch:
Enter WORKGROUP\foruo's password:
session setup failed: NT_STATUS_LOGON_FAILURE
What's the matter: I do not know! Or, the password of samba user is false or is
not the samba user or no user currently.
(Trouble-3: "login failure"
).
Trouble-3: login failure
. Because there is no user name called root
on the
Samba on MacOS, or not create the sharing user name root
.
Fixed!
Fourteen, try case:
sudo mount -t cifs -o username=user_share_name,password=pass //192.168.1.2/sharewithdebian /media/share_from_macos
Catch:``.
What's the matter: Successfully mounted!!!
Fifteen, try case:
sudo mount -t cifs username=sharewithdebian //192.168.1.2/sharewithdebian /media/share_from_macos
Catch:
[sudo] password for foruo:
mount: bad usage
Try 'mount --help' for more information.
What's the matter: not add the reading power -o
to the command.
Notice: the below code are deffer!
sudo mount -t cifs username=sharewithdebian //192.168.1.2/sharewithdebian /media/share_from_macos
sudo mount -t cifs -o username=sharewithdebian //192.168.1.2/sharewithdebian /media/share_from_macos
Fixed.
Sixteen, try case:
smbclient //192.168.1.2/sharewithdebian -p 139 -U sharewithdebian
Catch:
do_connect: NetBIOS support disabled, unable to connect
do_connect: Connection to 192.168.1.2 failed (Error NT_STATUS_NOT_SUPPORTED)
What's the matter: Samba Server do not support the port 139.
(Trouble-2: "not support"
).
or, try case:
smbclient -c "ls" //192.168.1.2/sharewithdebian -p 139 -U sharewithdebian%pass
also, catch:
do_connect: NetBIOS support disabled, unable to connect
do_connect: Connection to 192.168.1.2 failed (Error NT_STATUS_NOT_SUPPORTED)
The same matter.
(Trouble-2: "not support"
).
Trouble-2: not support
. Because the port of Smaba on MacOS is 445
.
So, fixed.
Notice: Un mount share folder -------------------------------------------------
If you do not mount share folder, just use cd && umount share_folders
.
e.g: sudo umount /media/share_from_macos
.
------------------------------------------------Not mount share folders: Notice
Notice: Others ----------------------------------------------------------------
Checkout the mounted filesystem: df -h
;
Checkout the mounted file: ll /media/share_folder
;
If you want to automate mount share_folders, just add the code to /etc/fstab
at the bottom:
//192.168.121.118/share /mnt/smbmount cifs username=zcwyou,password=123,soft,rw 0 0
also, continue use cd && sudo mount -a
to test mount sharing folders.
----------------------------------Strongly suggestion--------------------------
But But But I strongly suggest that we should be cautious about including
passwords in scripts or passing user-supplied values onto the command line.
----------------------------------Strongly suggestion--------------------------
SMBclient status command:
When terminal occurs smb:\>
after using smbclient XXXX
, then could use
smbclient command!
(The below is smbclient command)
?
or help
-> help with samba client usage.
![shell command]
-> active the SHELL command, or enter the status of SHELL.
cd [directory]
-> switch to the target directory of samba server, or current
directory.
lcd
-> switch to the target directory of samba client.
dir
or ls
-> list the files of current directory.
exit
or quit
-> exit the client of samba.
get file_server_name file_client_name
-> download file_server_name from
server of samba and named file_client_name
; if do not change name, then
do not add file_client_name
.
mget file1 file2 file3 filen
-> download multiple-files from server of samba.
md
or mkdir
-> create the directories at the server of samba.
rd
or rmdir
-> delete the directories at the server of samba.
put file_from_client_name file_to_server_name
-> load a file
file_from_client_name
to server of samba with naming file_to_server_name
.
mput file1 file2 filen
-> load multiple files to the server of samba.
--------------------------------------------------------------- Others : Notice
But the upstairs successful cases is only reading status! Try using the below:
sudo mount -t cifs //192.168.1.2/sharewithdebian /media/share/ -rw -o username=sharewithdebian,password=pass,nounix,sec=ntlmssp
Ok. read and write power!
But But But share folder will miss once the VM Debian power off!!!
VM Debian successfully login samba client with accessing the services of samba
server on Host macOS.
Happy Day! Nice Day! Great Day!
Have a nice!
1.Macbook build Samba folders to share with Ubuntu for accessing and loading(Chinese Blog).
2.Config the Samba client on Linux to access the remote Samba server contents(Chinese Blog).
3.Ubuntu access te server of Samba using terminal(Chinese Blog).
5.The usage of smbclient(Chinese Blog).
6.Hot to set Samba sharing for smart management on Ubuntu16.04(Chinese Blog).
This try to access the samba server of Guest VM Debian on Host machine macOS
terminal command. if Guest and host machine are all at router with under the
same net, host can access the share folder of Guest's samba server; but when it
comes NAT status, Host should need to use port forwarding to access. Though I
do that port forwarding, Host still can access the Guest via liking
127.0.0.1:xx445
.
Also, the share folder share_folder_via_samba_to_mac
of samba server of Guest
VM Debian is under ~/share_folder_via_samba_to_mac
, with user name
sharewithmac
, and user password user_password
.
1.Ubuntu16.04 access the sharing folders of Windows via Internet with Samba(Chinese Blog).
2.Hot to set Samba sharing for smart management on Ubuntu16.04(Chinese Blog).
Update July 20 2022 PM 05:00 EST
I'm back after taking a vacation.
What I have suffered in my jobless time?
Do a job, stand with the idea of boss, take the responsibility, solve those
problem, push action to the TOP.
I have just to work now!
NOW, it's time to get my fucking ass up and work! No time to die!
There is no need to dia for others. live for me, only myself.
Oh, my lig was hurt! Rest in peace, Your Majesty.
Too tired to go to bed!!!
Time has to shut down.
RIP, Q E II.
There must be work.
Work smart and hard!
My left leg pain and swollen.
Too more rebeck to go to hospital.
Do not fucking care those fucking words!
No one could limit your direction.
No time to die.
Now, it's the better time to get my fucking ass up and work.
Everything is just fine! It's not too late to work smart and hard!
Nothing needs to say! Go!
What am I waiting for? No need to wait!
Now I know What, how and why to do job after about thirty-nine gap time. It's
not too late to begin. Do not wait on the source station.
I would not choose suicide (suicide is the stupidest) or hurt any one (hurting
others would get my hands dirty).
Suicide is not in my dictionary. In my opinion, suicide is: sacrificing
yourself to make others happy.
I think back to my grandma who had a really tough time between 1960 and 1980.
My unemployed days were weaker than my grandma's hard times.
I still like challenges. I just waste my time elsewhere than my major.
Just as that says, be healthy, wealthy and wise.
Also, as always We know, you always come back to the basics.
But I should not do like this: He has too pride to accept any help.
Even, I had developed an outgoing personality.
I'm fine!!!
No so worst!
Morning glory this day! But I do not masturbate, even touch my litter brother.
Yes, I did that! Cheers!
So happy to witness my friends! Hooray!
Organic foods are great!
I need to care about my friends and me.
Caring about my friends and me, not only help them, but also help me.
Good morning, American!
I should have to notice the physical, mental, emotional healthy, body's
functioning and misdiagnosed depression of my family and me. That is vary vital
for the future of my family.
Interventions for the jobless person may make that man quickly get the offer
and improve outcomes of their family.(Reference: Depression from WHO)
I'd learned about nutritious, healthy and organic food from United States
Department of Agriculture(USDA), U.S. Food and Drug Administration(FDA) and
U.S. Health and Human Services(health.gov).
Finally, I've just spent a few days to terminal the definition of 'Healthy'
claim on food packages.
I know myself, I have the potential to reach the top of mine profession.
But no matter ow bleak things seem right now, there is hope.
It’s important to know that you’re not alone; many of us are facing the same
insecurities at this time. With time and the right coping techniques, you can
come to terms with these setbacks, ease your stress and anxiety, and move on
with your working life.
I am unemployment because I do not ready for interview and I do the wrong
techniques and I waste my time, not because I was bad at my major.
Social contact is nature’s antidote to stress. Nothing works better at calming
your nervous system than talking face to face with a good listener.
But it’s important to remember that being unemployed doesn’t have to define who
you are as a person. It’s up to you define yourself, not the state of the
economy or a company’s decision to lay you off. . Exercise is a powerful
antidote to stress. Spending time in nature is also a great stress reliever.
Social contact is nature’s antidote to stress. Now more than ever, it’s
important to take care of yourself.
Just as Gwyneth Paltrow says, I used to care so much what people thought of me.
Now I don't care. It's so nice. What I think it really means to not be caught
up in what other people think is it means that you're close to yourself.
Also, I recalled that the schooldays of mine wasn't quite as smooth.
And Paltrow says, I don't long for it, I don't miss it. But things can rekindle
at different times in your life. I've lived long enough to know that you can
never make assumptions about who you're going to be. So never say never! when
it comes to a potential return to acting. What about splitting from ex-husband,
she says, I was not able to make my first marriage work, and I took it as a
huge failure. And it's still hard. I have disappointed kids and it's never
going to be the same as if I stayed together with their dad. But knowing how
painful it was to get a divorce the first time, I'm vigilant about staying
aligned and not letting resentments build up.
Now, I'm back again! Yes, again! Do work smart and hard. Continue to spend time
and energy on profession. Cut down on other distractions that are not related
to career development.
Today is my birthday. Even though I'm unemployed, my birthday today is going to
be a little ceremonial. Although I am alone. I still need a piece of cake,
happy birthday to me!
Nice! There are four people say, Happy birthday to me!
. I am not live alone!